Class CallbackRecordListener

java.lang.Object
org.jooq.impl.CallbackRecordListener
All Implemented Interfaces:
EventListener, RecordListener

public final class CallbackRecordListener extends Object implements RecordListener
A RecordListener that allows for functional composition.

For example:

ParseListener listener = RecordListener
  .onLoadStart(ctx -> something())
  .onLoadEnd(ctx -> something());
Author:
Lukas Eder