| org.apache.catalina.cluster.SessionMessage
All known Subclasses: org.apache.catalina.cluster.session.SessionMessageImpl,
EVT_ALL_SESSION_DATA | final public static int EVT_ALL_SESSION_DATA(Code) | | When a session state is transferred, this is the event.
|
EVT_GET_ALL_SESSIONS | final public static int EVT_GET_ALL_SESSIONS(Code) | | Event type used when a server comes online for the first time.
The first thing the newly started server wants to do is to grab the
all the sessions from one of the nodes and keep the same state in there
|
EVT_SESSION_ACCESSED | final public static int EVT_SESSION_ACCESSED(Code) | | Event type used when a session has been accessed (ie, last access time
has been updated. This is used so that the replicated sessions will not expire
on the network
|
EVT_SESSION_CREATED | final public static int EVT_SESSION_CREATED(Code) | | Event type used when a session has been created on a node
|
EVT_SESSION_DELTA | final public static int EVT_SESSION_DELTA(Code) | | Event type used when an attribute has been added to a session,
the attribute will be sent to all the other nodes in the cluster
|
EVT_SESSION_EXPIRED | final public static int EVT_SESSION_EXPIRED(Code) | | Event type used when a session has expired
|
getEventType | public int getEventType()(Code) | | returns the event type
one of the event types EVT_XXXX |
getSession | public byte[] getSession()(Code) | | the serialized data for the session |
getSessionID | public String getSessionID()(Code) | | the session ID for the session |
|
|