Package org.epics.ca
Interface Constants
-
- All Known Implementing Classes:
ContextImpl
public interface Constants
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classConstants.ChannelProperties
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringCA_DEBUGString value of the JVM property key to turn on debugging.static shortCA_DEFAULT_PRIORITYDefault priority (corresponds to POSIX SCHED_OTHER)static longCA_ECHO_TIMEOUTEcho (state-of-health message) response timeout in ms.static shortCA_EXTENDED_MESSAGE_HEADER_SIZECA protocol message extended header size.static java.lang.StringCA_HOSTNAME_KEYString value of the JVM property key to provide (override) hostname.static shortCA_MAJOR_PROTOCOL_REVISIONCA protocol major revision (implemented by this library).static shortCA_MESSAGE_HEADER_SIZECA protocol message header size.static shortCA_MINOR_PROTOCOL_REVISIONCA protocol minor revision (implemented by this library).static java.lang.StringCA_MONITOR_NOTIFIER_DEFAULT_IMPLString value defining the default monitor notification engine.static java.lang.StringCA_MONITOR_NOTIFIER_IMPLString value of the JVM property key to configure the monitor notification engine.static intCA_PORT_BASECA protocol port base.static intCA_PROTO_ACCESS_RIGHT_READRead access right mask.static intCA_PROTO_ACCESS_RIGHT_WRITEWrite access right mask.static intCA_REPEATER_PORTDefault CA repeater port.static shortCA_SEARCH_DONTREPLYDo not require response for CA search request.static shortCA_SEARCH_DOREPLYRequire response (even if not found) for CA search request over TCP.static intCA_SERVER_PORTDefault CA server port.static java.lang.StringCA_STRIP_HOSTNAMEString value of the JVM property key to strip hostname returned by InetAddress.getLocalHost().getHostName().static shortCA_UNKNOWN_MINOR_PROTOCOL_REVISIONUnknown CA protocol minor revision.static shortCHANNEL_PRIORITY_ARCHIVEArchive priority.static shortCHANNEL_PRIORITY_DEFAULTDefault priority.static shortCHANNEL_PRIORITY_LINKS_DBDB links priority.static shortCHANNEL_PRIORITY_MAXMaximal priority.static shortCHANNEL_PRIORITY_MINMinimal priority.static shortCHANNEL_PRIORITY_OPIOPI priority.static intMAX_STRING_SIZEMax.static intMAX_TCP_RECVTCP maximum receive message size.static intMAX_UDP_RECVUDP maximum receive message size.static intMAX_UDP_SENDUDP maximum send message size.static intUNREASONABLE_CHANNEL_NAME_LENGTHUnreasonable channel name length.
-
-
-
Field Detail
-
CA_DEBUG
static final java.lang.String CA_DEBUG
String value of the JVM property key to turn on debugging.- See Also:
- Constant Field Values
-
CA_STRIP_HOSTNAME
static final java.lang.String CA_STRIP_HOSTNAME
String value of the JVM property key to strip hostname returned by InetAddress.getLocalHost().getHostName().- See Also:
- Constant Field Values
-
CA_HOSTNAME_KEY
static final java.lang.String CA_HOSTNAME_KEY
String value of the JVM property key to provide (override) hostname.- See Also:
- Constant Field Values
-
CA_MONITOR_NOTIFIER_IMPL
static final java.lang.String CA_MONITOR_NOTIFIER_IMPL
String value of the JVM property key to configure the monitor notification engine.- See Also:
- Constant Field Values
-
CA_MONITOR_NOTIFIER_DEFAULT_IMPL
static final java.lang.String CA_MONITOR_NOTIFIER_DEFAULT_IMPL
String value defining the default monitor notification engine.
-
CHANNEL_PRIORITY_MIN
static final short CHANNEL_PRIORITY_MIN
Minimal priority.- See Also:
- Constant Field Values
-
CHANNEL_PRIORITY_MAX
static final short CHANNEL_PRIORITY_MAX
Maximal priority.- See Also:
- Constant Field Values
-
CHANNEL_PRIORITY_DEFAULT
static final short CHANNEL_PRIORITY_DEFAULT
Default priority.- See Also:
- Constant Field Values
-
CHANNEL_PRIORITY_LINKS_DB
static final short CHANNEL_PRIORITY_LINKS_DB
DB links priority.- See Also:
- Constant Field Values
-
CHANNEL_PRIORITY_ARCHIVE
static final short CHANNEL_PRIORITY_ARCHIVE
Archive priority.- See Also:
- Constant Field Values
-
CHANNEL_PRIORITY_OPI
static final short CHANNEL_PRIORITY_OPI
OPI priority.- See Also:
- Constant Field Values
-
CA_MAJOR_PROTOCOL_REVISION
static final short CA_MAJOR_PROTOCOL_REVISION
CA protocol major revision (implemented by this library).- See Also:
- Constant Field Values
-
CA_MINOR_PROTOCOL_REVISION
static final short CA_MINOR_PROTOCOL_REVISION
CA protocol minor revision (implemented by this library).- See Also:
- Constant Field Values
-
CA_UNKNOWN_MINOR_PROTOCOL_REVISION
static final short CA_UNKNOWN_MINOR_PROTOCOL_REVISION
Unknown CA protocol minor revision.- See Also:
- Constant Field Values
-
CA_PORT_BASE
static final int CA_PORT_BASE
CA protocol port base.- See Also:
- Constant Field Values
-
CA_SERVER_PORT
static final int CA_SERVER_PORT
Default CA server port.- See Also:
- Constant Field Values
-
CA_REPEATER_PORT
static final int CA_REPEATER_PORT
Default CA repeater port.- See Also:
- Constant Field Values
-
CA_MESSAGE_HEADER_SIZE
static final short CA_MESSAGE_HEADER_SIZE
CA protocol message header size.- See Also:
- Constant Field Values
-
CA_EXTENDED_MESSAGE_HEADER_SIZE
static final short CA_EXTENDED_MESSAGE_HEADER_SIZE
CA protocol message extended header size.- See Also:
- Constant Field Values
-
MAX_UDP_SEND
static final int MAX_UDP_SEND
UDP maximum send message size. MAX_UDP: 1500 (max of Ethernet and 802.{2,3} MTU) - 20(IP) - 8(UDP) (the MTU of Ethernet is currently independent of its speed variant)- See Also:
- Constant Field Values
-
MAX_UDP_RECV
static final int MAX_UDP_RECV
UDP maximum receive message size.- See Also:
- Constant Field Values
-
MAX_TCP_RECV
static final int MAX_TCP_RECV
TCP maximum receive message size.- See Also:
- Constant Field Values
-
CA_DEFAULT_PRIORITY
static final short CA_DEFAULT_PRIORITY
Default priority (corresponds to POSIX SCHED_OTHER)- See Also:
- Constant Field Values
-
CA_PROTO_ACCESS_RIGHT_READ
static final int CA_PROTO_ACCESS_RIGHT_READ
Read access right mask.- See Also:
- Constant Field Values
-
CA_PROTO_ACCESS_RIGHT_WRITE
static final int CA_PROTO_ACCESS_RIGHT_WRITE
Write access right mask.- See Also:
- Constant Field Values
-
CA_SEARCH_DONTREPLY
static final short CA_SEARCH_DONTREPLY
Do not require response for CA search request.- See Also:
- Constant Field Values
-
CA_SEARCH_DOREPLY
static final short CA_SEARCH_DOREPLY
Require response (even if not found) for CA search request over TCP.- See Also:
- Constant Field Values
-
CA_ECHO_TIMEOUT
static final long CA_ECHO_TIMEOUT
Echo (state-of-health message) response timeout in ms.- See Also:
- Constant Field Values
-
MAX_STRING_SIZE
static final int MAX_STRING_SIZE
Max. (requested) string size.- See Also:
- Constant Field Values
-
UNREASONABLE_CHANNEL_NAME_LENGTH
static final int UNREASONABLE_CHANNEL_NAME_LENGTH
Unreasonable channel name length.- See Also:
- Constant Field Values
-
-