Package com.jalios.jstore.jsync
Interface JSyncConstants
-
- All Superinterfaces:
JaliosConstants
- All Known Implementing Classes:
FileFetcher
,JcmsJSyncListener
,JSyncDataListener
,JSyncLogger
,JSyncReplica
,JSyncUtil
public interface JSyncConstants extends JaliosConstants
This interfaces contains public JSync constants- Author:
- Olivier Dedieu
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
HEADER_SECRET
HTTP header for the JSync secretstatic int
SC_BAD_ADDRESS
Status code (1404) indicating the request comes from a different IP address than the ones used for join.static int
SC_BAD_LEADER
Status code (1405) indicating the request comes from a different IP address than the ones used for join.static int
SC_BAD_LOG_PREFIX
Status code (1411) indicating the join is rejected because the prefix is not the same as the leader.static int
SC_BAD_MESSAGE
Status code (1400) indicating the message sent by the sender was syntactically incorrect.static int
SC_CHECK_COMMIT_WORK_FAILED
Status code (1408) indicating the check for the log work commit has failed.static int
SC_COMMIT_WORK_FAILED
Status code (1409) indicating the log work has not been committed.static int
SC_DISCONNECTED
Status code (1407) indicating the update request was rejected because this replicas is not connected.static int
SC_EMPTY_PT
Status code (1412) indicating the received PT is empty.static int
SC_INCOMPATIBLE_LOG_FORMAT
Status code (1410) indicating the join is rejected because the log format (file/dir) is not the same as the leader.static int
SC_INTERNAL_SERVER_ERROR
Status code (1500) indicating an error inside the replica which prevented it from fulfilling the request.static int
SC_JOIN_REJECTED
Status code (1401) indicating this replica do not process join request.static int
SC_LEADER_CANNOT_JOIN
Status code (1402) indicating this replica do not process join request.static int
SC_NO_ACK
Status code (1101) indicating no acknowledge message was receivedstatic int
SC_NO_SEND
Status code (1201) indicating no message was sentstatic int
SC_OK
Status code (1200) indicating the request succeeded normally.static int
SC_UNKNOWN
Status code (1100) indicating an unknown errorstatic int
SC_UNKNOWN_URID
Status code (1403) indicating this sender has not performed a join before sending this message.static int
SC_URID_ALREADY_ADDED
Status code (1406) indicating the join request comes from an URID already added.static java.lang.String
STATUS_DISCONNECTED
Status for member replicastatic java.lang.String
STATUS_LEADER
Status for leader replicastatic java.lang.String
STATUS_LONE
Status for lone replicastatic java.lang.String
STATUS_MEMBER
Status for member replicastatic java.lang.String
STATUS_SUBLEADER
Status for subleader replica-
Fields inherited from interface com.jalios.util.JaliosConstants
CRLF, MILLIS_IN_ONE_DAY, MILLIS_IN_ONE_HOUR, MILLIS_IN_ONE_MINUTE, MILLIS_IN_ONE_MONTH, MILLIS_IN_ONE_SECOND, MILLIS_IN_ONE_WEEK, MILLIS_IN_ONE_YEAR
-
-
-
-
Field Detail
-
SC_UNKNOWN
static final int SC_UNKNOWN
Status code (1100) indicating an unknown error- See Also:
- Constant Field Values
-
SC_NO_ACK
static final int SC_NO_ACK
Status code (1101) indicating no acknowledge message was received- See Also:
- Constant Field Values
-
SC_OK
static final int SC_OK
Status code (1200) indicating the request succeeded normally.- See Also:
- Constant Field Values
-
SC_NO_SEND
static final int SC_NO_SEND
Status code (1201) indicating no message was sent- See Also:
- Constant Field Values
-
SC_BAD_MESSAGE
static final int SC_BAD_MESSAGE
Status code (1400) indicating the message sent by the sender was syntactically incorrect.- See Also:
- Constant Field Values
-
SC_JOIN_REJECTED
static final int SC_JOIN_REJECTED
Status code (1401) indicating this replica do not process join request.- See Also:
- Constant Field Values
-
SC_LEADER_CANNOT_JOIN
static final int SC_LEADER_CANNOT_JOIN
Status code (1402) indicating this replica do not process join request.- See Also:
- Constant Field Values
-
SC_UNKNOWN_URID
static final int SC_UNKNOWN_URID
Status code (1403) indicating this sender has not performed a join before sending this message.- See Also:
- Constant Field Values
-
SC_BAD_ADDRESS
static final int SC_BAD_ADDRESS
Status code (1404) indicating the request comes from a different IP address than the ones used for join.- See Also:
- Constant Field Values
-
SC_BAD_LEADER
static final int SC_BAD_LEADER
Status code (1405) indicating the request comes from a different IP address than the ones used for join.- See Also:
- Constant Field Values
-
SC_URID_ALREADY_ADDED
static final int SC_URID_ALREADY_ADDED
Status code (1406) indicating the join request comes from an URID already added.- See Also:
- Constant Field Values
-
SC_DISCONNECTED
static final int SC_DISCONNECTED
Status code (1407) indicating the update request was rejected because this replicas is not connected.- See Also:
- Constant Field Values
-
SC_CHECK_COMMIT_WORK_FAILED
static final int SC_CHECK_COMMIT_WORK_FAILED
Status code (1408) indicating the check for the log work commit has failed.- See Also:
- Constant Field Values
-
SC_COMMIT_WORK_FAILED
static final int SC_COMMIT_WORK_FAILED
Status code (1409) indicating the log work has not been committed.- See Also:
- Constant Field Values
-
SC_INCOMPATIBLE_LOG_FORMAT
static final int SC_INCOMPATIBLE_LOG_FORMAT
Status code (1410) indicating the join is rejected because the log format (file/dir) is not the same as the leader.- See Also:
- Constant Field Values
-
SC_BAD_LOG_PREFIX
static final int SC_BAD_LOG_PREFIX
Status code (1411) indicating the join is rejected because the prefix is not the same as the leader.- See Also:
- Constant Field Values
-
SC_EMPTY_PT
static final int SC_EMPTY_PT
Status code (1412) indicating the received PT is empty.- See Also:
- Constant Field Values
-
SC_INTERNAL_SERVER_ERROR
static final int SC_INTERNAL_SERVER_ERROR
Status code (1500) indicating an error inside the replica which prevented it from fulfilling the request.- See Also:
- Constant Field Values
-
STATUS_LONE
static final java.lang.String STATUS_LONE
Status for lone replica- See Also:
- Constant Field Values
-
STATUS_MEMBER
static final java.lang.String STATUS_MEMBER
Status for member replica- See Also:
- Constant Field Values
-
STATUS_DISCONNECTED
static final java.lang.String STATUS_DISCONNECTED
Status for member replica- See Also:
- Constant Field Values
-
STATUS_SUBLEADER
static final java.lang.String STATUS_SUBLEADER
Status for subleader replica- See Also:
- Constant Field Values
-
STATUS_LEADER
static final java.lang.String STATUS_LEADER
Status for leader replica- See Also:
- Constant Field Values
-
HEADER_SECRET
static final java.lang.String HEADER_SECRET
HTTP header for the JSync secret- See Also:
- Constant Field Values
-
-