Class ConnectClientRequest
java.lang.Object
org.opendaylight.controller.cluster.access.concepts.Message<ClientIdentifier,ConnectClientRequest>
org.opendaylight.controller.cluster.access.concepts.Request<ClientIdentifier,ConnectClientRequest>
org.opendaylight.controller.cluster.access.commands.ConnectClientRequest
- All Implemented Interfaces:
Serializable
,Immutable
Request to connect a frontend instance to the backend. It carries basic information about the frontend:
- its coordinates in
Request.getReplyTo()
- its minimum supported ABI version
- its maximum supported ABI version
It also includes request stream sequencing information.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConnectClientRequest
(ClientIdentifier identifier, ActorRef replyTo, ABIVersion minVersion, ABIVersion maxVersion) -
Method Summary
Modifier and TypeMethodDescriptionprotected MoreObjects.ToStringHelper
addToStringAttributes
(MoreObjects.ToStringHelper toStringHelper) Add attributes to the output ofMessage.toString()
.protected ConnectClientRequest
cloneAsVersion
(ABIVersion version) Create a copy of this message which will serialize to a stream corresponding to the specified method.protected org.opendaylight.controller.cluster.access.commands.ConnectClientRequest.SerialForm
externalizableProxy
(ABIVersion version) Instantiate a serialization proxy for this object for the target ABI version.toRequestFailure
(RequestException cause) Return aRequestFailure
for this request, caused by aRequestException
.Methods inherited from class org.opendaylight.controller.cluster.access.concepts.Request
getReplyTo
Methods inherited from class org.opendaylight.controller.cluster.access.concepts.Message
getSequence, getTarget, getVersion, throwNSE, toString, toVersion, writeReplace
-
Constructor Details
-
ConnectClientRequest
public ConnectClientRequest(ClientIdentifier identifier, ActorRef replyTo, ABIVersion minVersion, ABIVersion maxVersion)
-
-
Method Details
-
getMinVersion
-
getMaxVersion
-
toRequestFailure
Description copied from class:Request
Return aRequestFailure
for this request, caused by aRequestException
.- Specified by:
toRequestFailure
in classRequest<ClientIdentifier,
ConnectClientRequest> - Parameters:
cause
- Failure cause- Returns:
RequestFailure
corresponding to this request
-
externalizableProxy
protected org.opendaylight.controller.cluster.access.commands.ConnectClientRequest.SerialForm externalizableProxy(ABIVersion version) Description copied from class:Message
Instantiate a serialization proxy for this object for the target ABI version. Implementations should return different objects for incompatibleABIVersion
s. This method should never fail, as any compatibility checks should have been done byMessage.cloneAsVersion(ABIVersion)
.- Specified by:
externalizableProxy
in classRequest<ClientIdentifier,
ConnectClientRequest> - Parameters:
version
- Requested ABI version- Returns:
- Proxy for this object
-
cloneAsVersion
Description copied from class:Message
Create a copy of this message which will serialize to a stream corresponding to the specified method. This method should be implemented by the concrete final message class and should invoke the equivalent ofMessage(Message, ABIVersion)
.- Specified by:
cloneAsVersion
in classMessage<ClientIdentifier,
ConnectClientRequest> - Parameters:
version
- target ABI version- Returns:
- A message with the specified serialization stream
-
addToStringAttributes
protected MoreObjects.ToStringHelper addToStringAttributes(MoreObjects.ToStringHelper toStringHelper) Description copied from class:Message
Add attributes to the output ofMessage.toString()
. Subclasses wanting to contribute additional information should override this method. Any null attributes will be omitted from the output.- Overrides:
addToStringAttributes
in classRequest<ClientIdentifier,
ConnectClientRequest> - Parameters:
toStringHelper
- aMoreObjects.ToStringHelper
instance- Returns:
- The
MoreObjects.ToStringHelper
passed in as argument
-