Interface ReactiveConnectionPool

All Superinterfaces:
Serializable, Service

@Incubating public interface ReactiveConnectionPool extends Service
A Hibernate Service that provides access to pooled reactive connections.

A custom implementation of ReactiveConnectionPool may be selected by setting the configuration property Settings.SQL_CLIENT_POOL.

Alternatively, a program may integrate a custom ReactiveConnectionPool by contributing a new service using a StandardServiceInitiator or from code-based Hibernate configuration by calling StandardServiceRegistryBuilder.addService(java.lang.Class<T>, T).

 new ReactiveServiceRegistryBuilder()
     .applySettings( properties )
     .addService( ReactiveConnectionPool.class, new MyReactiveConnectionPool() )
     .build();