Class PoolAdapter
java.lang.Object
org.springframework.data.gemfire.client.PoolAdapter
- All Implemented Interfaces:
org.apache.geode.cache.client.Pool
- Direct Known Subclasses:
FactoryDefaultsPoolAdapter
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
- See Also:
-
PoolFactoryBean
Pool
-
Field Summary
-
Constructor Summary
-
Method Summary
-
Field Details
-
NOT_IMPLEMENTED
- See Also:
-
-
Constructor Details
-
PoolAdapter
public PoolAdapter()
-
-
Method Details
-
isDestroyed
public boolean isDestroyed()- Specified by:
isDestroyed
in interfaceorg.apache.geode.cache.client.Pool
-
getFreeConnectionTimeout
public int getFreeConnectionTimeout()- Specified by:
getFreeConnectionTimeout
in interfaceorg.apache.geode.cache.client.Pool
-
getIdleTimeout
public long getIdleTimeout()- Specified by:
getIdleTimeout
in interfaceorg.apache.geode.cache.client.Pool
-
getLoadConditioningInterval
public int getLoadConditioningInterval()- Specified by:
getLoadConditioningInterval
in interfaceorg.apache.geode.cache.client.Pool
-
getLocators
- Specified by:
getLocators
in interfaceorg.apache.geode.cache.client.Pool
-
getMaxConnections
public int getMaxConnections()- Specified by:
getMaxConnections
in interfaceorg.apache.geode.cache.client.Pool
-
getMinConnections
public int getMinConnections()- Specified by:
getMinConnections
in interfaceorg.apache.geode.cache.client.Pool
-
getMultiuserAuthentication
public boolean getMultiuserAuthentication()- Specified by:
getMultiuserAuthentication
in interfaceorg.apache.geode.cache.client.Pool
-
getName
- Specified by:
getName
in interfaceorg.apache.geode.cache.client.Pool
-
getOnlineLocators
- Specified by:
getOnlineLocators
in interfaceorg.apache.geode.cache.client.Pool
-
getPendingEventCount
public int getPendingEventCount()- Specified by:
getPendingEventCount
in interfaceorg.apache.geode.cache.client.Pool
-
getPingInterval
public long getPingInterval()- Specified by:
getPingInterval
in interfaceorg.apache.geode.cache.client.Pool
-
getPRSingleHopEnabled
public boolean getPRSingleHopEnabled()- Specified by:
getPRSingleHopEnabled
in interfaceorg.apache.geode.cache.client.Pool
-
getQueryService
public org.apache.geode.cache.query.QueryService getQueryService()- Specified by:
getQueryService
in interfaceorg.apache.geode.cache.client.Pool
-
getReadTimeout
public int getReadTimeout()- Specified by:
getReadTimeout
in interfaceorg.apache.geode.cache.client.Pool
-
getRetryAttempts
public int getRetryAttempts()- Specified by:
getRetryAttempts
in interfaceorg.apache.geode.cache.client.Pool
-
getServerConnectionTimeout
public int getServerConnectionTimeout()- Specified by:
getServerConnectionTimeout
in interfaceorg.apache.geode.cache.client.Pool
-
getServerGroup
- Specified by:
getServerGroup
in interfaceorg.apache.geode.cache.client.Pool
-
getServers
- Specified by:
getServers
in interfaceorg.apache.geode.cache.client.Pool
-
getSocketBufferSize
public int getSocketBufferSize()- Specified by:
getSocketBufferSize
in interfaceorg.apache.geode.cache.client.Pool
-
getSocketConnectTimeout
public int getSocketConnectTimeout()- Specified by:
getSocketConnectTimeout
in interfaceorg.apache.geode.cache.client.Pool
-
getSocketFactory
public org.apache.geode.cache.client.SocketFactory getSocketFactory()- Specified by:
getSocketFactory
in interfaceorg.apache.geode.cache.client.Pool
-
getStatisticInterval
public int getStatisticInterval()- Specified by:
getStatisticInterval
in interfaceorg.apache.geode.cache.client.Pool
-
getSubscriptionAckInterval
public int getSubscriptionAckInterval()- Specified by:
getSubscriptionAckInterval
in interfaceorg.apache.geode.cache.client.Pool
-
getSubscriptionEnabled
public boolean getSubscriptionEnabled()- Specified by:
getSubscriptionEnabled
in interfaceorg.apache.geode.cache.client.Pool
-
getSubscriptionMessageTrackingTimeout
public int getSubscriptionMessageTrackingTimeout()- Specified by:
getSubscriptionMessageTrackingTimeout
in interfaceorg.apache.geode.cache.client.Pool
-
getSubscriptionRedundancy
public int getSubscriptionRedundancy()- Specified by:
getSubscriptionRedundancy
in interfaceorg.apache.geode.cache.client.Pool
-
getSubscriptionTimeoutMultiplier
public int getSubscriptionTimeoutMultiplier()- Specified by:
getSubscriptionTimeoutMultiplier
in interfaceorg.apache.geode.cache.client.Pool
-
getThreadLocalConnections
public boolean getThreadLocalConnections()- Specified by:
getThreadLocalConnections
in interfaceorg.apache.geode.cache.client.Pool
-
destroy
public void destroy()- Specified by:
destroy
in interfaceorg.apache.geode.cache.client.Pool
-
destroy
public void destroy(boolean keepAlive) - Specified by:
destroy
in interfaceorg.apache.geode.cache.client.Pool
-
releaseThreadLocalConnection
public void releaseThreadLocalConnection()- Specified by:
releaseThreadLocalConnection
in interfaceorg.apache.geode.cache.client.Pool
-