Record Class Result
java.lang.Object
java.lang.Record
io.micronaut.kubernetes.client.openapi.operator.controller.reconciler.Result
- Record Components:
requeue- the info which determines whether the processing request should be returned to the queuerequeueAfter- the info which determines when the processing request should be returned to the queue
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanrequeue()Returns the value of therequeuerecord component.@Nullable DurationReturns the value of therequeueAfterrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Result
public Result(boolean requeue) -
Result
Creates an instance of aResultrecord class.- Parameters:
requeue- the value for therequeuerecord componentrequeueAfter- the value for therequeueAfterrecord component
-
-
Method Details
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes. -
requeue
-
requeueAfter
Returns the value of therequeueAfterrecord component.- Returns:
- the value of the
requeueAfterrecord component
-