Class CallbackExecuteListener

java.lang.Object
org.jooq.impl.CallbackExecuteListener
All Implemented Interfaces:
Serializable, EventListener, ExecuteListener

public final class CallbackExecuteListener extends Object implements ExecuteListener
An ExecuteListener that allows for functional composition.

For example:

ExecuteListener listener = ExecuteListener
  .onExecuteStart(ctx -> something())
  .onExecuteEnd(ctx -> something());
Author:
Lukas Eder
See Also: