Package org.apache.iotdb.commons.client
Interface IClientPoolFactory<K,V>
-
- All Known Implementing Classes:
ClientPoolFactory.AsyncConfigNodeHeartbeatServiceClientPoolFactory,ClientPoolFactory.AsyncConfigNodeIServiceClientPoolFactory,ClientPoolFactory.AsyncDataNodeHeartbeatServiceClientPoolFactory,ClientPoolFactory.AsyncDataNodeInternalServiceClientPoolFactory,ClientPoolFactory.AsyncDataNodeMPPDataExchangeServiceClientPoolFactory,ClientPoolFactory.SyncConfigNodeIServiceClientPoolFactory,ClientPoolFactory.SyncDataNodeInternalServiceClientPoolFactory,ClientPoolFactory.SyncDataNodeMPPDataExchangeServiceClientPoolFactory
public interface IClientPoolFactory<K,V>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.apache.commons.pool2.KeyedObjectPool<K,V>createClientPool(ClientManager<K,V> manager)We can implement this interface in other modules and then set the corresponding expected parameters and client factory classes.
-
-
-
Method Detail
-
createClientPool
org.apache.commons.pool2.KeyedObjectPool<K,V> createClientPool(ClientManager<K,V> manager)
We can implement this interface in other modules and then set the corresponding expected parameters and client factory classes.
-
-