IBM WebSphere™ eXtreme Scale Client for .NET Release 8.6.0.0 API Specification
Assembly: Client.Api (in Client.Api.dll) Version: 8.6.0.0
The following example illustrates how to retrieve an IGridManager and disconnect:
Provides methods for connecting to data grids. Use the GridManagerFactory to obtain an instance to an IGridManager instance.
Namespace: IBM.WebSphere.CachingAssembly: Client.Api (in Client.Api.dll) Version: 8.6.0.0
Syntax
Examples
// 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