Enum ScribeTimerType

File: Applications/Scribe/ScribeMessage.msg

(no description)

Enum values:

Name Value Description
SCRIBE_HEARTBEAT 0

Send heartbeat to all children of a group

SCRIBE_SUBSCRIPTION_REFRESH 1

refresh subscriptions for all groups

SCRIBE_PARENT_TIMEOUT 2

Parent failed to send heartbeat

SCRIBE_CHILD_TIMEOUT 3

Child faild to refresh subscription

Source code:

enum ScribeTimerType 
{
    SCRIBE_HEARTBEAT = 0; // Send heartbeat to all children of a group
    SCRIBE_SUBSCRIPTION_REFRESH = 1; // refresh subscriptions for all groups
    SCRIBE_PARENT_TIMEOUT = 2; // Parent failed to send heartbeat
    SCRIBE_CHILD_TIMEOUT = 3; // Child faild to refresh subscription
}