org.acplt.oncrpc
Interface OncRpcMessageType


public interface OncRpcMessageType

A collection of constants used for ONC/RPC messages to identify the type of message. Currently, ONC/RPC messages can be either calls or replies. Calls are sent by ONC/RPC clients to servers to call a remote procedure (for you "ohohpies" that can be translated into the buzzword "method"). A server then will answer with a corresponding reply message (but not in the case of batched calls).


Field Summary
static int ONCRPC_CALL
          Identifies an ONC/RPC call.
static int ONCRPC_REPLY
          Identifies an ONC/RPC reply.
 

Field Detail

ONCRPC_CALL

static final int ONCRPC_CALL
Identifies an ONC/RPC call. By a "call" a client request that a server carries out a particular remote procedure.

See Also:
Constant Field Values

ONCRPC_REPLY

static final int ONCRPC_REPLY
Identifies an ONC/RPC reply. A server responds with a "reply" after a client has sent a "call" for a particular remote procedure, sending back the results of calling that procedure.

See Also:
Constant Field Values