Record Class WatchEvent<T>
java.lang.Object
java.lang.Record
io.micronaut.kubernetes.client.openapi.watcher.WatchEvent<T>
- Type Parameters:
T
- the object type- Record Components:
type
- the type of event (ADDED, MODIFIED, DELETED, ERROR, BOOKMARK)object
- the objectstatus
- the instance of V1Status
public record WatchEvent<T>(@NonNull String type, T object, @Nullable V1Status status)
extends Record
Holder for deserialized kubernetes streamed event.
-
Constructor Summary
ConstructorDescriptionWatchEvent
(@NonNull String type, T object, @Nullable V1Status status) Creates an instance of aWatchEvent
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.object()
Returns the value of theobject
record component.@Nullable V1Status
status()
Returns the value of thestatus
record component.final String
toString()
Returns a string representation of this record class.@NonNull String
type()
Returns the value of thetype
record component.
-
Constructor Details
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
type
Returns the value of thetype
record component.- Returns:
- the value of the
type
record component
-
object
Returns the value of theobject
record component.- Returns:
- the value of the
object
record component
-
status
Returns the value of thestatus
record component.- Returns:
- the value of the
status
record component
-