コード例 #1
0
        }        //-------------------------------------------------------

        public static Apache.Geode.Client.IRegion <string, string> getRegion(string name, Apache.Geode.Client.Cache cache)
        {
            if (string.IsNullOrEmpty(name) || cache == null)
            {
                throw new ArgumentNullException();
            }

            Apache.Geode.Client.RegionFactory            regionFactory = cache.CreateRegionFactory(Apache.Geode.Client.RegionShortcut.PROXY);
            Apache.Geode.Client.IRegion <string, string> region        = regionFactory.Create <string, string>(name);

            return(region);
        }         //------------------------------------------------------------
コード例 #2
0
 public void AfterRegionDisconnected(Apache.Geode.Client.IRegion <TKey, TVal> region)
 {
 }
コード例 #3
0
 public void Close(Apache.Geode.Client.IRegion <TKey, TVal> region)
 {
 }