org.acplt.oncrpc
Interface OncRpcUdpRetransmissionMode
- public abstract interface OncRpcUdpRetransmissionMode
A collection of constants used to identify the retransmission schemes
when using UDP/IP-based ONC/RPC clients.
Field Summary |
static int |
EXPONENTIAL
In exponentional back-off retransmission mode, UDP/IP-based ONC/RPC
clients first wait a given retransmission timeout period before
sending the ONC/RPC call again. |
static int |
FIXED
In fixed retransmission mode, UDP/IP-based ONC/RPC clients wait a
given retransmission timeout period before send the ONC/RPC call again.
|
EXPONENTIAL
public static final int EXPONENTIAL
- In exponentional back-off retransmission mode, UDP/IP-based ONC/RPC
clients first wait a given retransmission timeout period before
sending the ONC/RPC call again. The retransmission timeout then is
doubled on each try.
FIXED
public static final int FIXED
- In fixed retransmission mode, UDP/IP-based ONC/RPC clients wait a
given retransmission timeout period before send the ONC/RPC call again.
The retransmission timeout is not changed between consecutive tries
but is fixed instead.