To create a pool get a factory by calling createFactory.
To find an existing pool by name call find.
To get rid of all created pools call close.
Static Public Member Functions | |
| static void | close (bool keepAlive=false) |
| Unconditionally destroys all created pools that are in this manager. | |
| static PoolFactoryPtr | createFactory () |
| Creates a new pool factory, which is used to configure and create new Pools. | |
| static PoolPtr | find (RegionPtr region) |
| Find the pool used by the given region. | |
| static PoolPtr | find (const char *name) |
Find by name an existing connection pool returning the existing pool or NULLPTR if it does not exist. | |
| static const HashMapOfPools & | getAll () |
| Returns a map containing all the pools in this manager. | |
| static void gemfire::PoolManager::close | ( | bool | keepAlive = false |
) | [static] |
Unconditionally destroys all created pools that are in this manager.
| keepAlive | defines whether the server should keep the durable client's subscriptions alive for the durable-client-timeout. |
durable-client-timeout. | static PoolFactoryPtr gemfire::PoolManager::createFactory | ( | ) | [static] |
Creates a new pool factory, which is used to configure and create new Pools.
Find the pool used by the given region.
| region | is the region that is using the pool. |
NULLPTR if the region does not have a pool. | static PoolPtr gemfire::PoolManager::find | ( | const char * | name | ) | [static] |
Find by name an existing connection pool returning the existing pool or NULLPTR if it does not exist.
| name | is the name of the connection pool |
NULLPTR if it does not exist. | static const HashMapOfPools& gemfire::PoolManager::getAll | ( | ) | [static] |
Returns a map containing all the pools in this manager.
The keys are pool names and the values are Pool instances.
The map contains the pools that this manager knows of at the time of this call. The map is free to be changed without affecting this manager.