Package org.jdbi.v3.core
Interface HandleListener
-
public interface HandleListenerAllows listening to events on theHandlelifecycle.
HandleListenerobjects are stored in a collection class. To ensure correct operation, they should implementObject.equals(java.lang.Object)andObject.hashCode()to allow correct addition and deletion from the collection.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default voidhandleClosed(Handle handle)A handle was closed.default voidhandleCreated(Handle handle)A handle was created.
-