@ParametersAreNonnullByDefault @Generated(value={"Immutables.generator","AbstractCircuitBreakerStatus"}) @Immutable public final class CircuitBreakerStatus extends Object implements AbstractCircuitBreakerStatus
AbstractCircuitBreakerStatus
.
Use the builder to create immutable instances:
CircuitBreakerStatus.builder()
.
Modifier and Type | Class and Description |
---|---|
static class |
CircuitBreakerStatus.Builder
Builds instances of type
CircuitBreakerStatus . |
Modifier and Type | Method and Description |
---|---|
static CircuitBreakerStatus.Builder |
builder()
Creates a builder for
CircuitBreakerStatus . |
static CircuitBreakerStatus |
copyOf(AbstractCircuitBreakerStatus instance)
Creates an immutable copy of a
AbstractCircuitBreakerStatus value. |
boolean |
equals(Object another)
This instance is equal to all instances of
CircuitBreakerStatus that have equal attribute values. |
double |
getFailedThroughputOneMinute()
Failed calls per second for the last minute.
|
String |
getId()
Circuit breaker identifier.
|
Latency |
getLatencyMicros()
Latency distribution for Exponentially Decaying Reservoir.
|
String |
getState()
Circuit breaker state; closed, open, half-open.
|
double |
getThroughputOneMinute()
Total (successful + failed) calls per second for the last minute.
|
java.time.Instant |
getTimestamp() |
long |
getTotalFailureCount()
Total number of failed calls.
|
long |
getTotalSuccessCount()
Total number of successful calls.
|
int |
hashCode()
Computes a hash code from attributes:
id , timestamp , state , totalSuccessCount , totalFailureCount , latencyMicros , throughputOneMinute , failedThroughputOneMinute . |
String |
toString()
Prints the immutable value
CircuitBreakerStatus... with all non-generated
and non-auxiliary attribute values. |
CircuitBreakerStatus |
withFailedThroughputOneMinute(double value)
Copy the current immutable object by setting a value for the
failedThroughputOneMinute attribute. |
CircuitBreakerStatus |
withId(String value)
Copy the current immutable object by setting a value for the
id attribute. |
CircuitBreakerStatus |
withLatencyMicros(Latency value)
Copy the current immutable object by setting a value for the
latencyMicros attribute. |
CircuitBreakerStatus |
withState(String value)
Copy the current immutable object by setting a value for the
state attribute. |
CircuitBreakerStatus |
withThroughputOneMinute(double value)
Copy the current immutable object by setting a value for the
throughputOneMinute attribute. |
CircuitBreakerStatus |
withTimestamp(java.time.Instant value)
Copy the current immutable object by setting a value for the
timestamp attribute. |
CircuitBreakerStatus |
withTotalFailureCount(long value)
Copy the current immutable object by setting a value for the
totalFailureCount attribute. |
CircuitBreakerStatus |
withTotalSuccessCount(long value)
Copy the current immutable object by setting a value for the
totalSuccessCount attribute. |
public String getId()
getId
in interface AbstractCircuitBreakerStatus
public java.time.Instant getTimestamp()
getTimestamp
in interface AbstractCircuitBreakerStatus
timestamp
attributepublic String getState()
getState
in interface AbstractCircuitBreakerStatus
public long getTotalSuccessCount()
getTotalSuccessCount
in interface AbstractCircuitBreakerStatus
public long getTotalFailureCount()
getTotalFailureCount
in interface AbstractCircuitBreakerStatus
public Latency getLatencyMicros()
getLatencyMicros
in interface AbstractCircuitBreakerStatus
public double getThroughputOneMinute()
getThroughputOneMinute
in interface AbstractCircuitBreakerStatus
public double getFailedThroughputOneMinute()
getFailedThroughputOneMinute
in interface AbstractCircuitBreakerStatus
public final CircuitBreakerStatus withId(String value)
id
attribute.
A shallow reference equality check is used to prevent copying of the same value by returning this
.value
- A new value for idthis
objectpublic final CircuitBreakerStatus withTimestamp(java.time.Instant value)
timestamp
attribute.
A shallow reference equality check is used to prevent copying of the same value by returning this
.value
- A new value for timestampthis
objectpublic final CircuitBreakerStatus withState(String value)
state
attribute.
A shallow reference equality check is used to prevent copying of the same value by returning this
.value
- A new value for statethis
objectpublic final CircuitBreakerStatus withTotalSuccessCount(long value)
totalSuccessCount
attribute.
A value equality check is used to prevent copying of the same value by returning this
.value
- A new value for totalSuccessCountthis
objectpublic final CircuitBreakerStatus withTotalFailureCount(long value)
totalFailureCount
attribute.
A value equality check is used to prevent copying of the same value by returning this
.value
- A new value for totalFailureCountthis
objectpublic final CircuitBreakerStatus withLatencyMicros(Latency value)
latencyMicros
attribute.
A shallow reference equality check is used to prevent copying of the same value by returning this
.value
- A new value for latencyMicrosthis
objectpublic final CircuitBreakerStatus withThroughputOneMinute(double value)
throughputOneMinute
attribute.value
- A new value for throughputOneMinutethis
objectpublic final CircuitBreakerStatus withFailedThroughputOneMinute(double value)
failedThroughputOneMinute
attribute.value
- A new value for failedThroughputOneMinutethis
objectpublic boolean equals(@Nullable Object another)
CircuitBreakerStatus
that have equal attribute values.equals
in class Object
true
if this
is equal to another
instancepublic int hashCode()
id
, timestamp
, state
, totalSuccessCount
, totalFailureCount
, latencyMicros
, throughputOneMinute
, failedThroughputOneMinute
.hashCode
in class Object
public String toString()
CircuitBreakerStatus...
with all non-generated
and non-auxiliary attribute values.toString
in class Object
public static CircuitBreakerStatus copyOf(AbstractCircuitBreakerStatus instance)
AbstractCircuitBreakerStatus
value.
Uses accessors to get values to initialize the new immutable instance.
If an instance is already immutable, it is returned as is.instance
- The instance to copypublic static CircuitBreakerStatus.Builder builder()
CircuitBreakerStatus
.