org.objectweb.carol.irmi
Interface Constants

All Known Subinterfaces:
ClientInterceptor, Interceptor
All Known Implementing Classes:
ClientLogger, Ref, Server

public interface Constants

The Constants interface defines the protocol constants used by this RMI implementation.

Author:
Rafael H. Schloming <rhs@mit.edu>

Field Summary
static byte DGC_PING
          Protocol constant used by the client to indicate the presence of a remote reference to an object.
static byte METHOD_CALL
          Protocol constant used by the client to request a remote invocation on the server.
static byte METHOD_ERROR
          Protocol constant used by the server to return an exceptional result of a remote method invocation.
static byte METHOD_RESULT
          Protocol constant used by the server to return the normal result of a remote method invocation.
static byte SYSTEM_ERROR
          Protocol constant used by the server to indicate that a system error occured at some point during an attempt to service a remote invocation request.
 

Field Detail

METHOD_CALL

static final byte METHOD_CALL
Protocol constant used by the client to request a remote invocation on the server.

See Also:
Constant Field Values

METHOD_RESULT

static final byte METHOD_RESULT
Protocol constant used by the server to return the normal result of a remote method invocation.

See Also:
Constant Field Values

METHOD_ERROR

static final byte METHOD_ERROR
Protocol constant used by the server to return an exceptional result of a remote method invocation.

See Also:
Constant Field Values

SYSTEM_ERROR

static final byte SYSTEM_ERROR
Protocol constant used by the server to indicate that a system error occured at some point during an attempt to service a remote invocation request.

See Also:
Constant Field Values

DGC_PING

static final byte DGC_PING
Protocol constant used by the client to indicate the presence of a remote reference to an object.

See Also:
Constant Field Values