Interface ResourceEventHandler<T>
-
- Type Parameters:
T- resource
public interface ResourceEventHandler<T>ResourceEventHandler can handle notifications for events that happen to a resource. The events are information only, so you can't return an error.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description voidonAdd(T obj)Called when an object is added.voidonDelete(T obj, boolean deletedFinalStateUnknown)Gets the final state of the item if it is known, otherwise it would get an object of the DeletedFinalStateUnknown.default voidonList(String resourceVersion, boolean remainedEmpty)Called after a listing is completed.default voidonNothing()Deprecated.- useonList(String, boolean)and check if the cache remained emptyvoidonUpdate(T oldObj, T newObj)Called when an object is modified.
-
-
-
Method Detail
-
onNothing
@Deprecated default void onNothing()
Deprecated.- useonList(String, boolean)and check if the cache remained emptyCalled after an empty list is retrieved on start or after an HTTP GONE when theStoreis emptyShould not be implemented with long-running logic as that may lead to memory issues.
-
onList
default void onList(String resourceVersion, boolean remainedEmpty)
Called after a listing is completed. By default callsonNothing()when remainedEmpty is true.Should not be implemented with long-running logic as that may lead to memory issues.
- Parameters:
resourceVersion- the latest resource version known to the list operationremainedEmpty- will be true if the cache remained empty prior to and after the list operation meaning no other events would have been emitted as part of the relist
-
onAdd
void onAdd(T obj)
Called when an object is added.Should not be implemented with long-running logic as that may lead to memory issues.
- Parameters:
obj- object
-
onUpdate
void onUpdate(T oldObj, T newObj)
Called when an object is modified. Note that oldObj is the last known state of the object -- it is possible that several changes were combined together, so you can't use this to see every single change. It is also called when a sync happens - oldObj will be the same as newObj.Should not be implemented with long-running logic as that may lead to memory issues.
- Parameters:
oldObj- old objectnewObj- new object
-
onDelete
void onDelete(T obj, boolean deletedFinalStateUnknown)
Gets the final state of the item if it is known, otherwise it would get an object of the DeletedFinalStateUnknown. This can happen if the watch is closed and misses the delete event and we don't notice the deletion until the subsequent re-list.Should not be implemented with long-running logic as that may lead to memory issues.
- Parameters:
obj- object to deletedeletedFinalStateUnknown- get final state of item if it is known or not.
-
-