-
- All Implemented Interfaces:
-
java.io.Serializable,java.lang.Comparable
public enum ObjectLifecycleEventRepresents lifecycle events for an Ably Object.
This enum notifies listeners about significant lifecycle changes that occur to an Object during its lifetime. Clients can register a ObjectLifecycleChange.Listener to receive these events.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DELETEDIndicates that an Object has been deleted (tombstoned).Emitted once when the object is tombstoned server-side (i.e., deleted and no longer addressable).Not re-emitted during client-side garbage collection of tombstones.
-
Method Summary
Modifier and Type Method Description static Array<ObjectLifecycleEvent>values()static ObjectLifecycleEventvalueOf(String name)-
-
Method Detail
-
values
static Array<ObjectLifecycleEvent> values()
-
valueOf
static ObjectLifecycleEvent valueOf(String name)
-
-
-
-