Package | Description |
---|---|
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.execute |
The
com.gemstone.gemfire.cache.execute package provides APIs used
for function execution on gemfire system members. |
com.gemstone.gemfire.cache.partition |
Provides classes which operate on partitioned regions.
|
com.gemstone.gemfire.cache.server |
The
com.gemstone.gemfire.cache.server package provides APIs used
for the server side of client/server caching. |
com.gemstone.gemfire.cache.util |
Provides utilities for use with the Caching API in the
com.gemstone.gemfire.cache.util package. |
com.gemstone.gemfire.distributed |
Provides information about, access to, and common tools for GemFire
distributed systems.
|
com.gemstone.gemfire.management |
A set of APIs for retrieving information and statistics for GemFire components as well as controlling the startup, shutdown and runtime of those components.
|
com.gemstone.gemfire.management.membership | |
com.gemstone.gemfire.security |
Provides an API for plugging in authentication and authorization
for members of a distributed system and clients.
|
Modifier and Type | Method and Description |
---|---|
DistributedMember |
SystemMember.getDistributedMember()
Deprecated.
Returns the
DistributedMember
that represents this system member. |
DistributedMember |
SystemMembershipEvent.getDistributedMember()
Deprecated.
Returns the
DistributedMember that this event originated in. |
Modifier and Type | Method and Description |
---|---|
Map<DistributedMember,Set<PersistentID>> |
AdminDistributedSystem.compactAllDiskStores()
Deprecated.
Compact the persistent files for all of the members of the distributed
system that the admin member connected to.
|
Map<DistributedMember,Set<PersistentID>> |
BackupStatus.getBackedUpDiskStores()
Deprecated.
Returns a map of disk stores that were successfully backed up.
|
Set<DistributedMember> |
AdminDistributedSystem.shutDownAllMembers()
Deprecated.
Shuts down all the members of the distributed system with a cache that the admin
member is connected to, excluding the stand-alone locators.
|
Set<DistributedMember> |
AdminDistributedSystem.shutDownAllMembers(long timeout)
Deprecated.
Shuts down all the members of the distributed system with a cache that the
admin member is connected to, excluding the stand-alone locators.
|
Modifier and Type | Method and Description |
---|---|
SystemMember |
AdminDistributedSystem.lookupSystemMember(DistributedMember distributedMember)
Deprecated.
Returns the administrative SystemMember specified by the
DistributedMember . |
Modifier and Type | Method and Description |
---|---|
DistributedMember |
CacheEvent.getDistributedMember()
Returns the
DistributedMember that this event originated in. |
Modifier and Type | Method and Description |
---|---|
Set<DistributedMember> |
Cache.getAdminMembers()
Returns a set of the administrative members in the distributed system.
|
Set<DistributedMember> |
LowMemoryException.getCriticalMembers()
Get a read-only set of members in a critical state at the time this
exception was constructed.
|
Set<DistributedMember> |
Cache.getMembers()
Returns a set of the other non-administrative members in the distributed system.
|
Set<DistributedMember> |
Cache.getMembers(Region r)
Returns a set of the members in the distributed system that have the
given region.
|
Modifier and Type | Method and Description |
---|---|
void |
RegionMembershipListener.initialMembers(Region<K,V> 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.
|
Constructor and Description |
---|
LowMemoryException(String msg,
Set<DistributedMember> criticalMembers)
Constructs an instance of
LowMemoryException with the specified detail message. |
Constructor and Description |
---|
ServerRefusedConnectionException(DistributedMember server,
String msg)
Constructs an instance of
ServerRefusedConnectionException with the
specified detail message. |
Modifier and Type | Method and Description |
---|---|
DistributedMember |
FunctionInvocationTargetException.getMemberId()
Method to get the member id of the Exception
|
Modifier and Type | Method and Description |
---|---|
void |
ResultCollector.addResult(DistributedMember memberID,
T resultOfSingleExecution)
Method used to feed result to the ResultCollector.
|
static Execution |
FunctionService.onMember(DistributedMember distributedMember)
Returns an
Execution object that can be used to execute a data
independent function on a DistributedMember . |
static Execution |
FunctionService.onMember(DistributedSystem system,
DistributedMember distributedMember)
Deprecated.
use
FunctionService.onMember(DistributedMember) instead |
Modifier and Type | Method and Description |
---|---|
static Execution |
FunctionService.onMembers(DistributedSystem system,
Set<DistributedMember> distributedMembers)
Deprecated.
use
FunctionService.onMembers(Set) instead |
static Execution |
FunctionService.onMembers(Set<DistributedMember> distributedMembers)
Returns an
Execution object that can be used to execute a data
independent function on the set of DistributedMember s. |
Constructor and Description |
---|
FunctionInvocationTargetException(String msg,
DistributedMember id)
Construct an instance of FunctionInvocationTargetException
|
Modifier and Type | Method and Description |
---|---|
DistributedMember |
PartitionMemberInfo.getDistributedMember()
Identifies the member for which these details pertain to.
|
static <K,V> DistributedMember |
PartitionRegionHelper.getPrimaryMemberForKey(Region<K,V> r,
K key)
Get the current primary owner for a key.
|
Modifier and Type | Method and Description |
---|---|
static <K,V> Set<DistributedMember> |
PartitionRegionHelper.getAllMembersForKey(Region<K,V> r,
K key)
Get all potential owners for a key.
|
static <K,V> Set<DistributedMember> |
PartitionRegionHelper.getRedundantMembersForKey(Region<K,V> r,
K key)
Get all potential redundant owners for a key.
|
Modifier and Type | Method and Description |
---|---|
static <K> void |
PartitionRegionHelper.moveBucketByKey(Region<K,?> region,
DistributedMember source,
DistributedMember destination,
K key)
Moves the bucket which contains the given key from the source member to the
destination member.
|
static RebalanceResults |
PartitionRegionHelper.moveData(Region<?,?> region,
DistributedMember source,
DistributedMember destination,
float percentage)
Moves data from the source member to the destination member, up to the
given percentage of data (measured in bytes).
|
Modifier and Type | Method and Description |
---|---|
ClientSession |
CacheServer.getClientSession(DistributedMember member)
Returns the
ClientSession associated with the
DistributedMember |
Modifier and Type | Method and Description |
---|---|
DistributedMember |
UniversalMembershipListenerAdapter.AdaptedMembershipEvent.getDistributedMember() |
Modifier and Type | Method and Description |
---|---|
ClientSession |
BridgeServer.getClientSession(DistributedMember member)
Deprecated.
Returns the
ClientSession associated with the
DistributedMember |
void |
RegionMembershipListenerAdapter.initialMembers(Region<K,V> r,
DistributedMember[] initialMembers) |
Constructor and Description |
---|
ServerRefusedConnectionException(DistributedMember server,
String msg)
Deprecated.
Constructs an instance of
ServerRefusedConnectionException with the
specified detail message. |
Modifier and Type | Method and Description |
---|---|
abstract DistributedMember |
DistributedSystem.findDistributedMember(String name)
Find the distributed member with the given name
|
abstract DistributedMember |
DistributedSystem.getDistributedMember()
Returns the
DistributedMember that identifies this connection to
the distributed system. |
Modifier and Type | Method and Description |
---|---|
abstract Set<DistributedMember> |
DistributedSystem.findDistributedMembers(InetAddress address)
Find the set of distributed members running on a given address
|
abstract Set<DistributedMember> |
DistributedSystem.getAllOtherMembers()
Returns a set of all the other members in this distributed system.
|
abstract Set<DistributedMember> |
DistributedSystem.getGroupMembers(String group)
Returns a set of all the members in the given group.
|
Modifier and Type | Method and Description |
---|---|
abstract ObjectName |
ManagementService.getAsyncEventQueueMBeanName(DistributedMember member,
String queueId)
Returns the object name of the AsyncEventQueueMBean representing a
asynchronous queue.
|
abstract ObjectName |
ManagementService.getCacheServerMBeanName(int serverPort,
DistributedMember member)
Returns the object name of the CacheServerMBean representing a cache server.
|
abstract ObjectName |
ManagementService.getDiskStoreMBeanName(DistributedMember member,
String diskName)
Returns the object name of the DiskStoreMBean representing a disk store.
|
abstract ObjectName |
ManagementService.getGatewayReceiverMBeanName(DistributedMember member)
Returns the object name of the GatewayReciverMBean representing a
gateway receiver.
|
abstract ObjectName |
ManagementService.getGatewaySenderMBeanName(DistributedMember member,
String gatwaySenderId)
Returns the object name of the GatewaySenderMBean representing a
gateway sender.
|
abstract ObjectName |
ManagementService.getLocatorMBeanName(DistributedMember member)
Returns the object name of the LocatorMBean representing a locator.
|
abstract ObjectName |
ManagementService.getLockServiceMBeanName(DistributedMember member,
String lockServiceName)
Returns the object name of the LockServiceMBean representing a lock service.
|
abstract ObjectName |
ManagementService.getMemberMBeanName(DistributedMember member)
Returns the object name of the MemberMBean representing a distributed member.
|
abstract ObjectName |
ManagementService.getRegionMBeanName(DistributedMember member,
String regionPath)
Returns the object name of the RegionMBean representing a region.
|
abstract Set<ObjectName> |
ManagementService.queryMBeanNames(DistributedMember member)
Returns the object names for all MBeans associated with a member.
|
Modifier and Type | Method and Description |
---|---|
DistributedMember |
MembershipEvent.getDistributedMember()
Returns the
DistributedMember that this event originated in. |
DistributedMember |
UniversalMembershipListenerAdapter.AdaptedMembershipEvent.getDistributedMember() |
DistributedMember |
ClientMembershipEvent.getMember()
Returns the the member that connected or disconnected.
|
Modifier and Type | Method and Description |
---|---|
Principal |
Authenticator.authenticate(Properties props,
DistributedMember member)
Verify the credentials provided in the properties for the client/peer as
specified in member ID and returns the principal associated with the
client/peer.
|
Properties |
AuthInitialize.getCredentials(Properties securityProps,
DistributedMember server,
boolean isPeer)
Initialize with the given set of security properties and return the
credentials for the peer/client as properties.
|
void |
AccessControl.init(Principal principal,
DistributedMember remoteMember,
Cache cache)
Initialize the callback for a client/peer having the given principal.
|
Copyright © 1997-2017 Pivotal Software, Inc. All rights reserved.