public enum LatencyMetric extends Enum<LatencyMetric>
Input --> (_) --> Command -+--> Event.0 --> (_) +-> State
`--> Event.1 --> (_) +-> State
`---------> Output
(command polling latency) <------->
(command queuing latency) <--->
(command processing latency) <--------+
`----------------------------->
(command handling latency) <----------------------------------------->
(event routing latency) <---------->
(event applying latency) <--->
(event queuing latency) <--->
(event handling latency) <------------------------>
(output publication latency) <---->
(event publication latency) <--------------------->
(command to output latency) <-------------------------------------------------->
(input to output latency) <----------------------------------------------------------->
| Modifier and Type | Method and Description |
|---|---|
static LatencyMetric |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LatencyMetric[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LatencyMetric COMMAND_POLLING_LATENCY
public static final LatencyMetric COMMAND_QUEUING_LATENCY
public static final LatencyMetric COMMAND_PROCESSING_LATENCY
public static final LatencyMetric COMMAND_HANDLING_LATENCY
public static final LatencyMetric EVENT_ROUTING_LATENCY
public static final LatencyMetric EVENT_APPLYING_LATENCY
public static final LatencyMetric EVENT_QUEUING_LATENCY
public static final LatencyMetric EVENT_HANDLING_LATENCY
public static final LatencyMetric OUTPUT_PUBLICATION_LATENCY
public static final LatencyMetric EVENT_PUBLICATION_LATENCY
public static final LatencyMetric COMMAND_TO_OUTPUT_LATENCY
public static final LatencyMetric INPUT_TO_OUTPUT_LATENCY
public static LatencyMetric[] values()
for (LatencyMetric c : LatencyMetric.values()) System.out.println(c);
public static LatencyMetric valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020 tools4j.org (Marco Terzer, Anton Anufriev). All Rights Reserved.