IGridManager InterfaceIBM WebSphere™ eXtreme Scale Client for .NET API Specification
IBM WebSphere™ eXtreme Scale Client for .NET Release 8.6.0.0 API Specification

Provides methods for connecting to data grids. Use the GridManagerFactory to obtain an instance to an IGridManager instance.

Namespace: IBM.WebSphere.Caching
Assembly: Client.Api (in Client.Api.dll) Version: 8.6.0.0
Syntax

Examples

The following example illustrates how to retrieve an IGridManager and disconnect:
// Retrieve the singleton IGridManager instance.
IGridManager gm = GridManagerFactory.GetGridManager();

// Retreive and cache the grid, and retreive and update data....
...

// Disconnect from the data grid when all done and  
// null out any references.
gm.Disconnect(ccc);
grid = null;
ccc = null;
See Also