Interface SessionKernelFactory<T extends SessionKernel>
- 
- Type Parameters:
 T- the type ofSessionKernel
- 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 SessionKernelFactory<T extends SessionKernel>Factory for creatingSessionKernelinstances 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tcreate(java.util.function.Supplier<RedundancyStateListener> redundancyStateListenerSupplier)Create aSessionKernelinstance 
 - 
 
- 
- 
Method Detail
- 
create
T create(java.util.function.Supplier<RedundancyStateListener> redundancyStateListenerSupplier)
Create aSessionKernelinstance- Parameters:
 redundancyStateListenerSupplier- aSupplierof aRedundancyStateListenerfor creating aRedundancyStateListenerwhich may be used by the created session kernel- Returns:
 - the created 
SessionKernelinstance 
 
 - 
 
 -