blob: 43df92711d52153f0d5c27fd0b7d298933976e1b [file] [log] [blame]
/*
* The DistributedSystem QuickStart Example.
* This example connects to two distributed systems.
* This example takes the following steps:
*
* 1. Create a GemFire Cache.
* 2. Now it creates a Pool with poolName1.
* 3. Adds server(localhost:40404) to a pool factory.
* 4. Creates a generic region "root1" with the pool then creates a generic subregion "exampleRegion" with the pool.
* 5. Put Entries (Key and Value pairs) into the Region.
* 6. Get Entries from the Region.
* 7. Invalidate an Entry in the Region.
* 8. Destroy an Entry in the Region.
* 9. Now it creates another generic region "root2" and subregion "exampleRegion" with another pool "poolName2", which connects to the server(localhost:40405).
* 10. Now we do put/get operations.
* 11. Close the Cache.
*
*/
// Use standard namespaces
using System;
// Use the GemFire namespaces
//using GemStone.GemFire.Cache;
using GemStone.GemFire.Cache.Generic;
namespace GemStone.GemFire.Cache.Generic.QuickStart
{
// The DistributedSystem QuickStart example.
class DistributedSystem
{
static void TestDistributedSystem(Cache cache, String hostname, int port, String poolName, String regionName)
{
//create pool factory to create the pool.
PoolFactory fact = PoolManager.CreateFactory();
//adding host(endpoint) in pool
fact.AddServer(hostname, port);
//enabling subscription on pool
fact.SetSubscriptionEnabled(true);
//creating pool with name "examplePool"
fact.Create(poolName);
RegionFactory regionFactory = cache.CreateRegionFactory(RegionShortcut.CACHING_PROXY);
IRegion<string, string> region = regionFactory.SetPoolName(poolName).Create<string, string>(regionName);
Console.WriteLine("Created a generic Region.");
// Put an Entry (Key and Value pair) into the Region using the IDictionary interface.
region["Key1"] = "Value1";
Console.WriteLine("Put the first Entry into the Region");
// Put another Entry into the Region.
region["123"] = "123";
Console.WriteLine("Put the second Entry into the Region");
// Get Entries back out of the Region.
string result1 = region["Key1"];
Console.WriteLine("Obtained the first Entry from the Region");
string result2 = region["123"];
Console.WriteLine("Obtained the second Entry from the Region");
// Invalidate an Entry in the Region.
region.Invalidate("Key1");
Console.WriteLine("Invalidated the first Entry in the Region");
// Destroy an Entry in the Region using the IDictionary interface.
region.Remove("123");
Console.WriteLine("Destroyed the second Entry in the Region");
}
static void Main(string[] args)
{
try
{
// Create a GemFire Cache.
CacheFactory cacheFactory = CacheFactory.CreateCacheFactory();
Cache cache = cacheFactory.SetSubscriptionEnabled(true).Create();
Console.WriteLine("Created the GemFire Cache");
//test on first distributem system
TestDistributedSystem(cache, "localhost", 40404, "poolName1", "exampleRegion1");
//test on second distributed system
TestDistributedSystem(cache, "localhost", 40405, "poolName2", "exampleRegion2");
// Close the GemFire Cache.
cache.Close();
Console.WriteLine("Closed the GemFire Cache");
}
// An exception should not occur
catch (GemFireException gfex)
{
Console.WriteLine("DistributedSystem GemFire Exception: {0}", gfex.Message);
}
}
}
}