Package | Description |
---|---|
com.gemstone.gemfire.cache |
Provides an implementation of distributed object caching that
can leverage GemFire's distribution capabilities.
|
com.gemstone.gemfire.cache.operations |
Contains the
OperationContext interface that encapsulates an operation and the data associated with it for both the pre-operation and post-operation cases. |
Modifier and Type | Field and Description |
---|---|
static InterestResultPolicy |
InterestResultPolicy.DEFAULT
The
InterestResultPolicy used by default; it is KEYS_VALUES . |
static InterestResultPolicy |
InterestResultPolicy.KEYS |
static InterestResultPolicy |
InterestResultPolicy.KEYS_VALUES |
static InterestResultPolicy |
InterestResultPolicy.NONE |
Modifier and Type | Method and Description |
---|---|
static InterestResultPolicy |
InterestResultPolicy.fromOrdinal(byte ordinal)
Returns the
InterestResultPolicy represented by specified ordinal |
Modifier and Type | Method and Description |
---|---|
void |
Region.registerInterest(K key,
InterestResultPolicy policy)
Sends a request to the CacheServer to register interest in a key for
this client.
|
void |
Region.registerInterest(K key,
InterestResultPolicy policy,
boolean isDurable)
Sends a request to the CacheServer to register interest in a key for
this client.
|
void |
Region.registerInterest(K key,
InterestResultPolicy policy,
boolean isDurable,
boolean receiveValues)
Sends a request to the CacheServer to register interest in a key for
this client.
|
void |
ClientSession.registerInterest(String regionName,
Object keyOfInterest,
InterestResultPolicy policy,
boolean isDurable)
Registers interest in a particular region and key
|
void |
ClientSession.registerInterest(String regionName,
Object keyOfInterest,
InterestResultPolicy policy,
boolean isDurable,
boolean receiveValues)
Registers interest in a particular region and key
|
void |
Region.registerInterestRegex(String regex,
InterestResultPolicy policy)
Sends a request to the CacheServer to register interest in a regular
expression pattern for this client.
|
void |
Region.registerInterestRegex(String regex,
InterestResultPolicy policy,
boolean isDurable)
Sends a request to the CacheServer to register interest in a regular
expression pattern for this client.
|
void |
Region.registerInterestRegex(String regex,
InterestResultPolicy policy,
boolean isDurable,
boolean receiveValues)
Sends a request to the CacheServer to register interest in a regular
expression pattern for this client.
|
Modifier and Type | Method and Description |
---|---|
InterestResultPolicy |
RegisterInterestOperationContext.getInterestResultPolicy()
Get the
InterestResultPolicy of this register/unregister
operation. |
Constructor and Description |
---|
RegisterInterestOperationContext(Object key,
InterestType interestType,
InterestResultPolicy policy)
Constructor for the register interest operation.
|
Copyright © 1997-2017 Pivotal Software, Inc. All rights reserved.