ibis.gmi
Class GroupMessage

java.lang.Object
  extended byibis.gmi.GroupMessage

public final class GroupMessage
extends java.lang.Object

The GroupMessage class is a container class for keeping replies around until they can be processed.


Field Summary
 boolean booleanResult
          The reply, in case it is a boolean.
 byte byteResult
          The reply, in case it is a byte.
 char charResult
          The reply, in case it is a char.
 double doubleResult
          The reply, in case it is a double.
 java.lang.Exception exceptionResult
          The reply, in case the invocation resulted in an exception.
 float floatResult
          The reply, in case it is a float.
 int intResult
          The reply, in case it is an int.
 long longResult
          The reply, in case it is a long.
 java.lang.Object objectResult
          The reply, in case it is an Object.
 int rank
          The rank number of the group member responsible for this reply.
 short shortResult
          The reply, in case it is a short.
 
Constructor Summary
GroupMessage()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

rank

public int rank
The rank number of the group member responsible for this reply.


booleanResult

public boolean booleanResult
The reply, in case it is a boolean.


byteResult

public byte byteResult
The reply, in case it is a byte.


shortResult

public short shortResult
The reply, in case it is a short.


charResult

public char charResult
The reply, in case it is a char.


intResult

public int intResult
The reply, in case it is an int.


longResult

public long longResult
The reply, in case it is a long.


floatResult

public float floatResult
The reply, in case it is a float.


doubleResult

public double doubleResult
The reply, in case it is a double.


objectResult

public java.lang.Object objectResult
The reply, in case it is an Object.


exceptionResult

public java.lang.Exception exceptionResult
The reply, in case the invocation resulted in an exception.

Constructor Detail

GroupMessage

public GroupMessage()


The Ibis project