blob: d7f8c5fa8b0e28e71ba099f353ef212918f490d0 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* The LoaderListenerWriter QuickStart Example.
*
* This example takes the following steps:
*
* 1. Connect to a Geode Distributed System.
* 2. Create a Geode Cache.
* 3. Get the generic example Region from the Cache.
* 4. Set the generic SimpleCacheLoader, SimpleCacheListener and SimpleCacheWriter plugins on the Region.
* 5. Put 3 Entries into the Region.
* 6. Update an Entry in the Region.
* 7. Destroy an Entry in the Region.
* 8. Invalidate an Entry in the Region.
* 9. Get a new Entry from the Region.
* 10. Get the destroyed Entry from the Region.
* 11. Close the Cache.
* 12. Disconnect from the Distributed System.
*
*/
// Use standard namespaces
using System;
// Use the Geode namespace
using Apache.Geode.Client;
namespace Apache.Geode.Client.QuickStart
{
// The LoaderListenerWriter QuickStart example.
class LoaderListenerWriter
{
static void Main(string[] args)
{
try
{
// Create a Geode Cache.
CacheFactory cacheFactory = CacheFactory.CreateCacheFactory();
Cache cache = cacheFactory.Set("cache-xml-file", "XMLs/clientLoaderListenerWriter.xml")
.SetSubscriptionEnabled(true)
.Create();
Console.WriteLine("Created the Geode Cache");
// Get the example Region from the Cache which is declared in the Cache XML file.
IRegion<string, string> region = cache.GetRegion<string, string>("/exampleRegion");
Console.WriteLine("Obtained the generic Region from the Cache");
// Plugin the SimpleCacheLoader, SimpleCacheListener and SimpleCacheWrite to the Region.
AttributesMutator<string, string> attrMutator = region.AttributesMutator;
attrMutator.SetCacheLoader(new SimpleCacheLoader<string, string>());
attrMutator.SetCacheListener(new SimpleCacheListener<string, string>());
attrMutator.SetCacheWriter(new SimpleCacheWriter<string, string>());
Console.WriteLine("Attached the simple generic plugins on the Region");
// The following operations should cause the plugins to print the events.
// Put 3 Entries into the Region using the IDictionary interface.
region["Key1"] = "Value1";
region["Key2"] = "Value2";
region["Key3"] = "Value3";
Console.WriteLine("Put 3 Entries into the Region");
// Update Key3.
region["Key3"] = "Value3-Updated";
// Destroy Key3 using the IDictionary interface.
region.Remove("Key3");
// Invalidate Key2.
region.Invalidate("Key2");
string value = null;
try
{
// Get a new Key.
value = region["Key4"];
}
catch (KeyNotFoundException knfex)
{
Console.WriteLine("Got expected KeyNotFoundException: {0}", knfex.Message);
}
try
{
// Get a destroyed Key.
value = region["Key3"];
}
catch (KeyNotFoundException knfex)
{
Console.WriteLine("Got expected KeyNotFoundException: {0}", knfex.Message);
}
// Close the Geode Cache.
cache.Close();
Console.WriteLine("Closed the Geode Cache");
}
// An exception should not occur
catch (GeodeException gfex)
{
Console.WriteLine("LoaderListenerWriter Geode Exception: {0}", gfex.Message);
}
}
}
}