Class TransactionSuccess<T extends TransactionSuccess<T>>
- java.lang.Object
-
- org.opendaylight.controller.cluster.access.concepts.Message<T,C>
-
- org.opendaylight.controller.cluster.access.concepts.Response<T,C>
-
- org.opendaylight.controller.cluster.access.concepts.RequestSuccess<TransactionIdentifier,T>
-
- org.opendaylight.controller.cluster.access.commands.TransactionSuccess<T>
-
- Type Parameters:
T
- Message type
- All Implemented Interfaces:
Serializable
,Immutable
,MutationBehaviour<Immutable>
- Direct Known Subclasses:
ExistsTransactionSuccess
,IncrementTransactionSequenceSuccess
,ModifyTransactionSuccess
,ReadTransactionSuccess
,SkipTransactionsResponse
,TransactionAbortSuccess
,TransactionCanCommitSuccess
,TransactionCommitSuccess
,TransactionPreCommitSuccess
,TransactionPurgeResponse
@Beta public abstract class TransactionSuccess<T extends TransactionSuccess<T>> extends RequestSuccess<TransactionIdentifier,T>
Abstract base class forRequestSuccess
es involving specific transaction. This class is visible outside of this package solely for the ability to perform a unified instanceof check.- Author:
- Robert Varga
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description protected abstract org.opendaylight.controller.cluster.access.commands.TransactionSuccess.SerialForm<T>
externalizableProxy(ABIVersion version)
Instantiate a serialization proxy for this object for the target ABI version.-
Methods inherited from class org.opendaylight.controller.cluster.access.concepts.Message
addToStringAttributes, cloneAsVersion, getSequence, getTarget, getVersion, toString, toVersion, writeReplace
-
-
-
-
Method Detail
-
externalizableProxy
protected abstract org.opendaylight.controller.cluster.access.commands.TransactionSuccess.SerialForm<T> 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 classMessage<TransactionIdentifier,T extends TransactionSuccess<T>>
- Parameters:
version
- Requested ABI version- Returns:
- Proxy for this object
-
-