|
Rice Pastry API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object rice.p2p.past.messaging.PastMessage rice.p2p.past.messaging.ContinuationMessage
public abstract class ContinuationMessage
Nested Class Summary |
---|
Nested classes/interfaces inherited from interface rice.Continuation |
---|
Continuation.ErrorContinuation<R,E extends java.lang.Exception>, Continuation.ExternalContinuation<R,E extends java.lang.Exception>, Continuation.ExternalContinuationRunnable<R,E extends java.lang.Exception>, Continuation.ExternalRunnable, Continuation.ListenerContinuation<R,E extends java.lang.Exception>, Continuation.MultiContinuation, Continuation.NamedContinuation, Continuation.SimpleContinuation, Continuation.StandardContinuation<R,E extends java.lang.Exception> |
Field Summary | |
---|---|
protected java.lang.Exception |
exception
|
protected java.lang.Object |
response
|
static byte |
S_EMPTY
No response or exception. |
static byte |
S_JAVA_EXCEPTION
Java Serialized Exception |
static byte |
S_JAVA_RESPONSE
Java Serialized Response |
static byte |
S_SUB
Subclass handled serialization. |
protected byte |
serType
|
Fields inherited from class rice.p2p.past.messaging.PastMessage |
---|
dest, id, isResponse, source |
Fields inherited from interface rice.p2p.commonapi.Message |
---|
DEFAULT_PRIORITY, HIGH_PRIORITY, LOW_PRIORITY, LOWEST_PRIORITY, MAX_PRIORITY, MEDIUM_HIGH_PRIORITY, MEDIUM_LOW_PRIORITY, MEDIUM_PRIORITY |
Constructor Summary | |
---|---|
|
ContinuationMessage(InputBuffer buf,
Endpoint endpoint)
The serialization stategy is that usually the subtype will have an optimal serialization strategy, but sometimes we will have to revert to java serialization |
protected |
ContinuationMessage(int uid,
NodeHandle source,
Id dest)
Constructor which takes a unique integer Id, as well as the data to be stored |
Method Summary | |
---|---|
void |
deserialize(InputBuffer buf,
Endpoint endpoint)
|
java.lang.Object |
getResponse()
Returns the response |
void |
receiveException(java.lang.Exception e)
Method which builds a response for this message, using the provided exception, which was thrown |
void |
receiveResult(java.lang.Object o)
Method which builds a response for this message, using the provided object as a result. |
void |
returnResponse(Continuation c,
Environment env,
java.lang.String instance)
Method by which this message is supposed to return it's response. |
abstract void |
serialize(OutputBuffer buf)
Deprecated to cause warnings. |
void |
serialize(OutputBuffer buf,
boolean javaSerialize)
If you want this class to serialize itself, set javaSerialize to true, otherwise, the subclass is expected to do an optimal serializatoin |
Methods inherited from class rice.p2p.past.messaging.PastMessage |
---|
addHop, getDestination, getPriority, getSource, getUID, isResponse, setResponse |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface rice.p2p.commonapi.rawserialization.RawMessage |
---|
getType |
Field Detail |
---|
protected java.lang.Object response
protected java.lang.Exception exception
public static byte S_EMPTY
public static byte S_SUB
public static byte S_JAVA_RESPONSE
public static byte S_JAVA_EXCEPTION
protected byte serType
Constructor Detail |
---|
protected ContinuationMessage(int uid, NodeHandle source, Id dest)
uid
- The unique idsource
- The source handledest
- The destination addresspublic ContinuationMessage(InputBuffer buf, Endpoint endpoint) throws java.io.IOException
buf
- endpoint
-
java.io.IOException
Method Detail |
---|
public void receiveResult(java.lang.Object o)
receiveResult
in interface Continuation
o
- The object argumentpublic void receiveException(java.lang.Exception e)
receiveException
in interface Continuation
e
- The exception argumentpublic void returnResponse(Continuation c, Environment env, java.lang.String instance)
returnResponse
in class PastMessage
c
- The continuation to return the reponse to.public java.lang.Object getResponse()
public void deserialize(InputBuffer buf, Endpoint endpoint) throws java.io.IOException
buf
-
java.io.IOException
public abstract void serialize(OutputBuffer buf) throws java.io.IOException
serialize
in interface RawSerializable
serialize
in class PastMessage
java.io.IOException
public void serialize(OutputBuffer buf, boolean javaSerialize) throws java.io.IOException
buf
- javaSerialize
-
java.io.IOException
|
Rice Pastry API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |