Package org.jdbi.v3.core
Interface HandleListener
public interface HandleListener
Allows listening to events on the
Handle
lifecycle.
HandleListener
objects are stored in a collection class. To ensure correct operation, they should implement Object.equals(java.lang.Object)
and
Object.hashCode()
to allow correct addition and deletion from the collection.-
Method Summary
Modifier and TypeMethodDescriptiondefault void
handleClosed
(Handle handle) A handle was closed.default void
handleCreated
(Handle handle) A handle was created.