Module org.refcodes.serial
Package org.refcodes.serial
Class AbstractErrorCorrectionTransmissionDecorator<DECORATEE extends Transmission>
java.lang.Object
org.refcodes.serial.AbstractErrorCorrectionTransmissionDecorator<DECORATEE>
- Type Parameters:
DECORATEE- The decoratee type describing the according subclass to be enriched.
- All Implemented Interfaces:
Serializable,org.refcodes.mixin.DecorateeAccessor<DECORATEE>,org.refcodes.mixin.LengthAccessor,org.refcodes.mixin.Resetable,org.refcodes.schema.Schemable,AcknowledgeRetryNumberAccessor,AcknowledgeTimeoutMillisAccessor,ErrorCorrectionTransmission,Transmission,Transmission.TransmissionMixin
- Direct Known Subclasses:
AbstractStopAndWaitTransmissionDecorator
public abstract class AbstractErrorCorrectionTransmissionDecorator<DECORATEE extends Transmission>
extends Object
implements ErrorCorrectionTransmission, Transmission.TransmissionMixin, org.refcodes.mixin.DecorateeAccessor<DECORATEE>
The
AbstractErrorCorrectionTransmissionDecorator class implements a
decorator providing base functionality for an error correction
Transmission.- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.refcodes.serial.AcknowledgeRetryNumberAccessor
AcknowledgeRetryNumberAccessor.AcknowledgeRetryNumberBuilder<B extends AcknowledgeRetryNumberAccessor.AcknowledgeRetryNumberBuilder<B>>, AcknowledgeRetryNumberAccessor.AcknowledgeRetryNumberMutator, AcknowledgeRetryNumberAccessor.AcknowledgeRetryNumberPropertyNested classes/interfaces inherited from interface org.refcodes.serial.AcknowledgeTimeoutMillisAccessor
AcknowledgeTimeoutMillisAccessor.AcknowledgeTimeoutMillisBuilder<B extends AcknowledgeTimeoutMillisAccessor.AcknowledgeTimeoutMillisBuilder<B>>, AcknowledgeTimeoutMillisAccessor.AcknowledgeTimeoutMillisMutator, AcknowledgeTimeoutMillisAccessor.AcknowledgeTimeoutMillisPropertyNested classes/interfaces inherited from interface org.refcodes.mixin.DecorateeAccessor
org.refcodes.mixin.DecorateeAccessor.DecorateeBuilder<DECORATEE extends Object,B extends org.refcodes.mixin.DecorateeAccessor.DecorateeBuilder<DECORATEE, B>>, org.refcodes.mixin.DecorateeAccessor.DecorateeMutator<DECORATEE extends Object>, org.refcodes.mixin.DecorateeAccessor.DecorateeProperty<DECORATEE extends Object> Nested classes/interfaces inherited from interface org.refcodes.mixin.LengthAccessor
org.refcodes.mixin.LengthAccessor.LengthBuilder<B extends org.refcodes.mixin.LengthAccessor.LengthBuilder<B>>, org.refcodes.mixin.LengthAccessor.LengthMutator, org.refcodes.mixin.LengthAccessor.LengthPropertyNested classes/interfaces inherited from interface org.refcodes.serial.Transmission
Transmission.TransmissionMixin -
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedHook constructor to be used by sub-classes.Constructs aAbstractErrorCorrectionTransmissionDecoratorinstance with the given decoratee.AbstractErrorCorrectionTransmissionDecorator(DECORATEE aSegment, int aAckRetryNumber, long aAckTimeoutInMs) Constructs aAbstractErrorCorrectionTransmissionDecoratorinstance with the given decoratee.AbstractErrorCorrectionTransmissionDecorator(DECORATEE aSegment, TransmissionMetrics aTransmissionMetrics) Constructs aAbstractErrorCorrectionTransmissionDecoratorinstance with the given decoratee. -
Method Summary
Modifier and TypeMethodDescriptionbooleanintRetrieves the number of retries from the acknowledge retry number.longThe acknowledge timeout attribute in milliseconds.intDetermines the overall length of thisTransmission.inthashCode()voidreset()Resets any dynamic data (e.g. values such as payloads or checksums) and must not(!)toSchema()Provides theSequencerepresentation of thisTransmission.org.refcodes.struct.SimpleTypeMapReturns theSimpleTypeMaprepresentation of thisTransmission.toString()Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.refcodes.serial.Transmission
transmitTo, transmitToMethods inherited from interface org.refcodes.serial.Transmission.TransmissionMixin
transmitTo
-
Field Details
-
ACK_TIMEOUT_IN_MS
- See Also:
-
ACK_RETRY_NUMBER
- See Also:
-
_acknowledgeRetryNumber
protected int _acknowledgeRetryNumber -
_acknowledgeTimeoutInMs
protected long _acknowledgeTimeoutInMs -
_decoratee
-
-
Constructor Details
-
AbstractErrorCorrectionTransmissionDecorator
public AbstractErrorCorrectionTransmissionDecorator(DECORATEE aSegment, TransmissionMetrics aTransmissionMetrics) Constructs aAbstractErrorCorrectionTransmissionDecoratorinstance with the given decoratee. The configuration attributes are taken from theTransmissionMetricsconfiguration object, though only those attributes are supported which are also supported by the other constructors!- Parameters:
aSegment- The decoratee or referencee to be contained by this facade.aTransmissionMetrics- TheTransmissionMetricsto be used for configuring this instance.
-
AbstractErrorCorrectionTransmissionDecorator
protected AbstractErrorCorrectionTransmissionDecorator()Hook constructor to be used by sub-classes. -
AbstractErrorCorrectionTransmissionDecorator
Constructs aAbstractErrorCorrectionTransmissionDecoratorinstance with the given decoratee. Takes a retry count ofObject.notify()by default and a timeout detecting a retry situation ofIoTimeout.MIN.- Parameters:
aDecoratee- The decoratee to be contained by this facade.
-
AbstractErrorCorrectionTransmissionDecorator
public AbstractErrorCorrectionTransmissionDecorator(DECORATEE aSegment, int aAckRetryNumber, long aAckTimeoutInMs) Constructs aAbstractErrorCorrectionTransmissionDecoratorinstance with the given decoratee.- Parameters:
aSegment- The decoratee or referencee to be contained by this facade.aAckRetryNumber- The number of retries waiting for an ACK from the return channel.aAckTimeoutInMs- The timeout in milliseconds to pend till the next retry.
-
-
Method Details
-
getAcknowledgeRetryNumber
public int getAcknowledgeRetryNumber()Retrieves the number of retries from the acknowledge retry number. A acknowledge retry number is the overall number of retries to use when counting retries.- Specified by:
getAcknowledgeRetryNumberin interfaceAcknowledgeRetryNumberAccessor- Returns:
- The number of retries stored by the acknowledge retry number.
-
getAcknowledgeTimeoutMillis
public long getAcknowledgeTimeoutMillis()The acknowledge timeout attribute in milliseconds.- Specified by:
getAcknowledgeTimeoutMillisin interfaceAcknowledgeTimeoutMillisAccessor- Returns:
- An long integer with the timeout in milliseconds.
-
getLength
public int getLength()Determines the overall length of thisTransmission. In case of nestedTransmissioninstances, all length values from all sub-segments are accumulated to the result as well.- Specified by:
getLengthin interfaceorg.refcodes.mixin.LengthAccessor- Specified by:
getLengthin interfaceTransmission- Returns:
- The (overall) length of the
Transmission(including any sub-segments).
-
toSequence
Provides theSequencerepresentation of thisTransmission. In case of nestedTransmissioninstances, allSequencerepresentations from all sub-segments are accumulated to the result as well. Caution, the Transmission (or its nestedTransmissioninstances) may be backed by the returnedSequence.- Specified by:
toSequencein interfaceTransmission- Returns:
- The according instance's
Sequence.
-
getDecoratee
- Specified by:
getDecorateein interfaceorg.refcodes.mixin.DecorateeAccessor<DECORATEE extends Transmission>
-
reset
public void reset()Resets any dynamic data (e.g. values such as payloads or checksums) and must not(!) reset any configurations or settings required to produce the dynamic data (e.g. theTransmissionMetrics).- Specified by:
resetin interfaceorg.refcodes.mixin.Resetable- Specified by:
resetin interfaceTransmission
-
toSchema
- Specified by:
toSchemain interfaceorg.refcodes.schema.Schemable- Specified by:
toSchemain interfaceTransmission
-
toString
-
hashCode
public int hashCode() -
equals
-
toSimpleTypeMap
public org.refcodes.struct.SimpleTypeMap toSimpleTypeMap()Returns theSimpleTypeMaprepresentation of thisTransmission. In case this Transmission hasTransmissionchildren, then the children are queried as well and contained in the resultingSimpleTypeMap. The aliases of the accordingTransmissioninstances represent the resulting path to aTransmission's final simple type.- Specified by:
toSimpleTypeMapin interfaceTransmission- Returns:
- The
SimpleTypeMaprepresenting thisTransmissionand (if any) its children, with the according aliases forming the paths to theTransmission's values.
-