Record Class SinkLifecycleEvent.SinkDeleted
java.lang.Object
java.lang.Record
com.inductiveautomation.ignition.gateway.storeforward.SinkLifecycleEvent.SinkDeleted
- Record Components:
storageKey- the storage key identifying the sink being deletedflavor- the flavor identifying which pipelines are affected by this deletionisEngineBound- whether the sink is bound to the engine's lifecycle
- All Implemented Interfaces:
SinkLifecycleEvent
- Enclosing interface:
- SinkLifecycleEvent
public static record SinkLifecycleEvent.SinkDeleted(StorageKey storageKey, PersistentFlavor<?> flavor, boolean isEngineBound)
extends Record
implements SinkLifecycleEvent
Event indicating that a sink has been deleted. The deletion is scoped to pipelines matching the
specified flavor.
- Since:
- 8.3.5
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.inductiveautomation.ignition.gateway.storeforward.SinkLifecycleEvent
SinkLifecycleEvent.SinkDeleted, SinkLifecycleEvent.SinkRenamed -
Constructor Summary
ConstructorsConstructorDescriptionSinkDeleted(StorageKey storageKey, PersistentFlavor<?> flavor, boolean isEngineBound) Validates all parameters are non-null. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.flavor()Returns the value of theflavorrecord component.final inthashCode()Returns a hash code value for this object.booleanReturns the value of theisEngineBoundrecord component.Returns the value of thestorageKeyrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
SinkDeleted
Validates all parameters are non-null.
-
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
storageKey
Returns the value of thestorageKeyrecord component.- Returns:
- the value of the
storageKeyrecord component
-
flavor
Returns the value of theflavorrecord component.- Returns:
- the value of the
flavorrecord component
-
isEngineBound
public boolean isEngineBound()Returns the value of theisEngineBoundrecord component.- Returns:
- the value of the
isEngineBoundrecord component
-