- 
- All Known Implementing Classes:
 DefaultVisitListenerProvider
- Functional Interface:
 - This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
 
@FunctionalInterface public interface VisitListenerProvider
A provider forVisitListenerinstances.In order to facilitate the lifecycle management of
VisitListenerinstances that are provided to a jOOQConfiguration, 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.- Author:
 - Lukas Eder
 - See Also:
 VisitListener,Configuration
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull VisitListenerprovide()Provide aVisitListenerinstance. 
 - 
 
- 
- 
Method Detail
- 
provide
@NotNull @NotNull VisitListener provide()
Provide aVisitListenerinstance.Implementations are free to choose whether this method returns new instances at every call or whether the same instance is returned repetitively.
A
VisitListenershall be provided exactly once perContexttraversal, i.e. perRenderContextorBindContext.- Returns:
 - A 
VisitListenerinstance. - See Also:
 VisitListener,VisitContext,DefaultVisitListenerProvider
 
 - 
 
 -