@FunctionalInterface public interface RecordListenerProvider
RecordListener
instances.
In order to facilitate the lifecycle management of
RecordListener
instances that are provided to a jOOQ
Configuration
, clients can implement this API. To jOOQ, it is thus
irrelevant, if execute listeners are stateful or stateless, local to a single
record or record manipulation, or global to an application.
RecordListener
,
Configuration
Modifier and Type | Method and Description |
---|---|
RecordListener |
provide()
Provide a
RecordListener instance. |
RecordListener provide()
RecordListener
instance.
Implementations are free to choose whether this method returns new instances at every call or whether the same instance is returned repetitively.
A RecordListener
shall be provided exactly once per
UpdatableRecord
manipulation, i.e. per
RecordContext
.
RecordListener
instance.RecordListener
,
RecordContext
,
DefaultRecordListenerProvider
Copyright © 2017. All Rights Reserved.