Package org.redisson.tomcat
Class AttributeMessage
- java.lang.Object
-
- org.redisson.tomcat.AttributeMessage
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AttributeRemoveMessage
,AttributesClearMessage
,AttributesPutAllMessage
,AttributeUpdateMessage
,SessionCreatedMessage
,SessionDestroyedMessage
public class AttributeMessage extends Object implements Serializable
- Author:
- Nikita Koksharov
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AttributeMessage()
AttributeMessage(String nodeId, String sessionId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getNodeId()
String
getSessionId()
protected byte[]
toByteArray(Encoder encoder, Object value)
protected Object
toObject(Decoder<?> decoder, byte[] value)
-
-
-
Method Detail
-
getSessionId
public String getSessionId()
-
getNodeId
public String getNodeId()
-
toByteArray
protected byte[] toByteArray(Encoder encoder, Object value) throws IOException
- Throws:
IOException
-
toObject
protected Object toObject(Decoder<?> decoder, byte[] value) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
-