ActionToken

Enumeration

Visual Basic

Public Enum ActionToken

C#

public enum ActionToken

Description

These enumerated constants specify the possible strategies for batching outbound messages.

Remarks

Each of these constants is a token designating a command to a fault tolerance callback method. The program’s callback method receives one of these tokens, and interprets it as an instruction from the Rendezvous fault tolerance software as described in this table (see also, Fault Tolerance Callback Actions in TIBCO Rendezvous Concepts).

Member

Description

ActionToken.PrepareToActivate

Prepare to activate (hint).

Rendezvous fault tolerance software passes this token to the callback method to instruct the program to make itself ready to activate on short notice—so that if the callback method subsequently receives the instruction to activate, it can do so without delay.

This token is a hint, indicating that the program might soon receive an instruction to activate. It does not guarantee that an activate instruction will follow, nor that any minimum time will elapse before an activate instruction follows.

ActionToken.Activate

Activate immediately.

Rendezvous fault tolerance software passes this token to the callback method to instruct the program to activate.

ActionToken.Deactivate

Deactivate immediately.

Rendezvous fault tolerance software passes this token to the callback method to instruct the program to deactivate.