Class PoolAdapter

java.lang.Object
org.springframework.data.gemfire.client.PoolAdapter
All Implemented Interfaces:
Pool
Direct Known Subclasses:
FactoryDefaultsPoolAdapter

public abstract class PoolAdapter extends Object implements Pool
The PoolAdapter class is an abstract base class and default, no-op implementation of the Pool interface that conveniently enables implementing classes to extend this adapter and choose which Pool methods/operations are supported by this implementation. For instance, one possible implementation is Spring Data GemFire's PoolFactoryBean, which can act as a Pool in a context where only the Pool's "configuration" and meta-data are required, but no actual connections or operating state information (e.g. pendingEventCount) is needed.
Since:
1.8.0
Author:
John Blum
See Also: