GemFire 5.7

Uses of Interface
com.gemstone.gemfire.cache.Region

Packages that use Region
com.gemstone.gemfire The base package of the GemFire Java product, featuring highly concurrent distributed caching with cache event delivery, OQL querying, and remote cache administration, built using a DistributedSystem which includes a DistributedLockService
com.gemstone.gemfire.admin Provides an API for administering various GemFire components such as a GemFire distributed system, and processes that host GemFire Caches. 
com.gemstone.gemfire.cache Provides an implementation of distributed object caching that can leverage GemFire's distribution capabilities. 
com.gemstone.gemfire.cache.client The com.gemstone.gemfire.cache.client package provides APIs used for client connectivity and caching. 
com.gemstone.gemfire.cache.query GemFire's query service, an implementation of an OQL/SQL-style query processor with supporting indexes. 
com.gemstone.gemfire.cache.util Provides utilities for use with the Caching API in the com.gemstone.gemfire.cache.util package. 
 

Uses of Region in com.gemstone.gemfire
 

Methods in com.gemstone.gemfire that return Region
static Region DataSerializer.readRegion(DataInput in)
          Reads an instance of Region.
 

Methods in com.gemstone.gemfire with parameters of type Region
static void DataSerializer.writeRegion(Region rgn, DataOutput out)
          Writes an instance of Region.
 

Uses of Region in com.gemstone.gemfire.admin
 

Constructors in com.gemstone.gemfire.admin with parameters of type Region
RegionSubRegionSnapshot(Region reg)
           
 

Uses of Region in com.gemstone.gemfire.cache
 

Methods in com.gemstone.gemfire.cache that return Region
 Region RegionFactory.create(String name)
          Creates a region using a DistributedSystem, Cache, and the configuration contained in this RegionFactory.
 Region DynamicRegionFactory.createDynamicRegion(String parentRegionName, String regionName)
          Creates the dynamic Region in the local cache and distributes the creation to other caches.
 Region Cache.createRegion(String name, RegionAttributes aRegionAttributes)
          Creates a region using the specified RegionAttributes.
 Region Region.createSubregion(String subregionName, RegionAttributes aRegionAttributes)
          Creates a subregion with the specified name and RegionAttributes.
 Region Cache.createVMRegion(String name, RegionAttributes aRegionAttributes)
          Deprecated. as of GemFire 5.0, use Cache.createRegion(java.lang.String, com.gemstone.gemfire.cache.RegionAttributes) instead.
 Region Region.getParentRegion()
          Gets the parent region of this region.
 Region AttributesMutator.getRegion()
          Returns the Region whose attributes this mutator affects.
 Region CacheEvent.getRegion()
          Returns the region to which this cached object belongs or the region that raised this event for RegionEvents.
 Region Region.Entry.getRegion()
          Returns the region that contains this entry.
 Region LoaderHelper.getRegion()
          Returns the region to which the entry belongs.
 Region RegionExistsException.getRegion()
          Return the Region that already exists which prevented region creation.
 Region Cache.getRegion(String path)
          Return the existing region (or subregion) with the specified path that already exists or is already mapped into the cache.
 Region Region.getSubregion(String path)
          Returns a subregion with the specified name or null if doesn't exist.
 

Methods in com.gemstone.gemfire.cache with parameters of type Region
static Set RequiredRoles.checkForRequiredRoles(Region region)
          Returns a set of any currently missing required roles for the specified region.
 void RegionMembershipListener.initialMembers(Region region, DistributedMember[] initialMembers)
          Invoked when the listener is first initialized and is given the set of members that have the region created at that time.
static boolean RequiredRoles.isRoleInRegionMembership(Region region, Role role)
          Returns true if the Role is currently present in the Region membership.
static Set RequiredRoles.waitForRequiredRoles(Region region, long timeout)
          Returns a set of any currently missing required roles for the specified region.
 

Constructors in com.gemstone.gemfire.cache with parameters of type Region
DiskAccessException(String msg, Region r)
          Constructs a new DiskAccessException with a message string.
DiskAccessException(String msg, Throwable cause, Region r)
          Constructs a new DiskAccessException with a message string and a cause.
RegionExistsException(Region rgn)
          Constructs an instance of RegionExistsException with the specified Region.
RegionExistsException(Region rgn, Throwable cause)
          Constructs an instance of RegionExistsException with the specified detail message and cause.
 

Uses of Region in com.gemstone.gemfire.cache.client
 

Methods in com.gemstone.gemfire.cache.client with parameters of type Region
static Pool PoolManager.find(Region region)
          Find the pool used by the given region.
 

Uses of Region in com.gemstone.gemfire.cache.query
 

Methods in com.gemstone.gemfire.cache.query that return Region
 Region Index.getRegion()
          The Region this index is on
 

Methods in com.gemstone.gemfire.cache.query with parameters of type Region
 Index QueryService.getIndex(Region region, String indexName)
          Get the Index from the specified Region with the specified name.
 Collection QueryService.getIndexes(Region region)
          Get a collection of all the indexes on the specified Region
 Collection QueryService.getIndexes(Region region, IndexType indexType)
          Get a collection of all the indexes on the specified Region of the specified index type.
 void QueryService.removeIndexes(Region region)
          Remove all the indexes on the specified Region
 

Uses of Region in com.gemstone.gemfire.cache.util
 

Methods in com.gemstone.gemfire.cache.util that return Region
 Region GatewayEvent.getRegion()
          Returns the Region associated with this GatewayEvent.
 

Methods in com.gemstone.gemfire.cache.util with parameters of type Region
 void BridgeClient.attach(Region r)
          Deprecated. Notify the BridgeClient that the given Region will begin delivering events to this BridgeClient.
 void BridgeLoader.attach(Region r)
          Deprecated. Notify the BridgeLoader that the given Region will begin calling BridgeLoader.load(LoaderHelper).
 void BridgeWriter.attach(Region r)
          Deprecated. Notify the BridgeWriter that the given Region will begin delivering events to this BridgeWriter.
 void BridgeClient.detach(Region r)
          Deprecated. Notify the BridgeClient that the given region is no longer relevant.
 void BridgeLoader.detach(Region r)
          Deprecated. Notify the BridgeLoader that the given region is no longer relevant.
 void BridgeWriter.detach(Region r)
          Deprecated. Notify the BridgeWriter that the given region is no longer relevant.
 void RegionMembershipListenerAdapter.initialMembers(Region r, DistributedMember[] initialMembers)
           
 


GemFire 5.7

Copyright © 2002-2008 GemStone Systems, Inc. All Rights Reserved.