C# Class Spring.Data.GemFire.AllKeysInterest

Basic holder class for registering an all-key based interest in cached data.
Inheritance: IInterest
Datei anzeigen Open project: spring-projects/spring-gemfire-net

Protected Properties

Property Type Description
durable bool
policy InterestResultPolicy

Public Methods

Method Description
AllKeysInterest ( )

Initializes a new instance of the AllKeysInterest class.

AllKeysInterest ( InterestResultPolicy policy )

Initializes a new instance of the AllKeysInterest class.

AllKeysInterest ( InterestResultPolicy policy, bool durable )

Initializes a new instance of the AllKeysInterest class.

The client can register any of its interest lists and continuous queries as durable. Durable interest remains even if the client disconnects for a period of time. During the client’s down time, the server maintains its durable subscriptions and then, when the client reconnects, plays them back to the client.

AllKeysInterest ( bool durable )

Initializes a new instance of the AllKeysInterest class.

The client can register any of its interest lists and continuous queries as durable. Durable interest remains even if the client disconnects for a period of time. During the client’s down time, the server maintains its durable subscriptions and then, when the client reconnects, plays them back to the client.

ToString ( ) : string

Returns a System.String that represents this instance.

Method Details

AllKeysInterest() public method

Initializes a new instance of the AllKeysInterest class.
public AllKeysInterest ( )

AllKeysInterest() public method

Initializes a new instance of the AllKeysInterest class.
public AllKeysInterest ( InterestResultPolicy policy )
policy InterestResultPolicy The policy.

AllKeysInterest() public method

Initializes a new instance of the AllKeysInterest class.
The client can register any of its interest lists and continuous queries as durable. Durable interest remains even if the client disconnects for a period of time. During the client’s down time, the server maintains its durable subscriptions and then, when the client reconnects, plays them back to the client.
public AllKeysInterest ( InterestResultPolicy policy, bool durable )
policy InterestResultPolicy The policy.
durable bool if set to true register durable interest.

AllKeysInterest() public method

Initializes a new instance of the AllKeysInterest class.
The client can register any of its interest lists and continuous queries as durable. Durable interest remains even if the client disconnects for a period of time. During the client’s down time, the server maintains its durable subscriptions and then, when the client reconnects, plays them back to the client.
public AllKeysInterest ( bool durable )
durable bool if set to true register durable interest.

ToString() public method

Returns a System.String that represents this instance.
public ToString ( ) : string
return string

Property Details

durable protected_oe property

protected bool durable
return bool

policy protected_oe property

protected InterestResultPolicy policy
return InterestResultPolicy