public class DiscoveryConstraints extends Object
DiscoveryProtocolVersion
, MulticastMaxPacketSize
,
MulticastTimeToLive
, UnicastSocketTimeout
,
ConnectionRelativeTime
,
ConnectionAbsoluteTime
.Modifier and Type | Field and Description |
---|---|
static Method |
multicastAnnouncementMethod
Method object for the multicastAnnouncement method of this class.
|
static Method |
multicastRequestMethod
Method object for the multicastRequest method of this class.
|
static Method |
unicastDiscoveryMethod
Method object for the unicastDiscovery method of this class.
|
Modifier and Type | Method and Description |
---|---|
void |
checkProtocolVersion(int version)
Checks the protocol version of an incoming multicast request,
announcement, or unicast discovery attempt, throwing an
UnsupportedConstraintException if handling of the given protocol does
not satisfy the constraints of this instance. |
int |
chooseProtocolVersion()
Returns the protocol version to use for sending multicast requests or
announcements, or initiating unicast discovery.
|
boolean |
equals(Object o) |
long |
getConnectionDeadline(long defaultValue)
Returns the deadline by which a network connection must be established
during unicast discovery, or
defaultValue if not
constrained. |
int |
getMulticastMaxPacketSize(int defaultValue)
Returns the maximum multicast packet size to allow, or the specified
default value if not constrained.
|
int |
getMulticastTimeToLive(int defaultValue)
Returns the multicast time to live value to use, or the specified
default value if not constrained.
|
InvocationConstraints |
getUnfulfilledConstraints()
Returns the constraints for this instance which are not, or do not
contain as alternatives, instances of the "fulfillable" (by this layer)
constraint types
DiscoveryProtocolVersion ,
ConnectionRelativeTime , MulticastMaxPacketSize ,
MulticastTimeToLive , and UnicastSocketTimeout . |
int |
getUnicastSocketTimeout(int defaultValue)
Returns socket read timeout to use for unicast discovery, or the
specified default value if not constrained.
|
int |
hashCode() |
static void |
multicastAnnouncement()
Empty method which serves as a
MethodConstraints key for looking
up InvocationConstraints that apply to multicast announcements. |
static void |
multicastRequest()
Empty method which serves as a
MethodConstraints key for looking
up InvocationConstraints that apply to multicast requests. |
static DiscoveryConstraints |
process(InvocationConstraints constraints)
Processes the discovery-related constraints in the given set of
constraints, returning a
DiscoveryConstraints instance from
which the constraint results can be queried. |
static void |
unicastDiscovery()
Empty method which serves as a
MethodConstraints key for looking
up InvocationConstraints that apply to unicast discovery. |
public static final Method multicastRequestMethod
public static final Method multicastAnnouncementMethod
public static final Method unicastDiscoveryMethod
public static void multicastRequest()
MethodConstraints
key for looking
up InvocationConstraints
that apply to multicast requests.public static void multicastAnnouncement()
MethodConstraints
key for looking
up InvocationConstraints
that apply to multicast announcements.public static void unicastDiscovery()
MethodConstraints
key for looking
up InvocationConstraints
that apply to unicast discovery.public static DiscoveryConstraints process(InvocationConstraints constraints) throws UnsupportedConstraintException
DiscoveryConstraints
instance from
which the constraint results can be queried. Processing of timeout
constraints is time dependent, and subsequent invocations of this
method with the same InvocationConstraints
may result in
DiscoveryConstraint
instances with different constraint
results.constraints
- the constraints to processUnsupportedConstraintException
- if the discovery-related
constraints contain conflicts, or otherwise cannot be processedNullPointerException
- if constraints
is
null
public int chooseProtocolVersion()
public void checkProtocolVersion(int version) throws UnsupportedConstraintException
UnsupportedConstraintException
if handling of the given protocol does
not satisfy the constraints of this instance.version
- protocol version to checkUnsupportedConstraintException
- if handling of the given protocol
does not satisfy the constraints of this instancepublic long getConnectionDeadline(long defaultValue)
defaultValue
if not
constrained.defaultValue
- default timeout to returnpublic int getMulticastMaxPacketSize(int defaultValue)
defaultValue
- the value to return if the multicast packet size is
unconstrainedpublic int getMulticastTimeToLive(int defaultValue)
defaultValue
- the value to return if the multicast time to live
value is unconstrainedpublic int getUnicastSocketTimeout(int defaultValue)
defaultValue
- the value to return if the socket timeout is
unconstrainedpublic InvocationConstraints getUnfulfilledConstraints()
DiscoveryProtocolVersion
,
ConnectionRelativeTime
, MulticastMaxPacketSize
,
MulticastTimeToLive
, and UnicastSocketTimeout
.
Constraint alternatives containing both fulfillable and unfulfillable
constraints are treated optimistically--it is assumed that the one of the
fulfillable alternatives will be satisfied, so the unfulfillable
alternatives are not included in the returned constraints.Copyright © 2016–2018 The Apache Software Foundation. All rights reserved.