Package edu.nps.moves.dis7.pdus
Class ActionResponseRPdu
java.lang.Object
edu.nps.moves.dis7.pdus.Pdu
edu.nps.moves.dis7.pdus.PduBase
edu.nps.moves.dis7.pdus.SimulationManagementWithReliabilityFamilyPdu
edu.nps.moves.dis7.pdus.ActionResponseRPdu
- All Implemented Interfaces:
Marshaller
,Serializable
- Direct Known Subclasses:
ActionResponseReliablePdu
public class ActionResponseRPdu
extends SimulationManagementWithReliabilityFamilyPdu
implements Serializable
5.12.4.8 Serves the same function as the Action Response PDU (see 5.6.5.8.1) but is used to acknowledge the receipt of an Action Request-R PDU.
IEEE Std 1278.1-2012, IEEE Standard for Distributed Interactive Simulation - Application Protocols
- See Also:
- Serialized Form
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected List<FixedDatum>
Fixed datum recordsprotected int
Fixed datum record countprotected int
variable datum record countprotected int
request IDprotected ActionResponseRequestStatus
status of response uid 72protected List<VariableDatum>
Variable datum recordsFields inherited from class edu.nps.moves.dis7.pdus.SimulationManagementWithReliabilityFamilyPdu
originatingID, receivingID
Fields inherited from class edu.nps.moves.dis7.pdus.Pdu
exerciseID, length, pduType, protocolFamily, protocolVersion, timestamp
-
Constructor Summary
ConstructorsConstructorDescriptionConstructor creates and configures a new instance object -
Method Summary
Modifier and TypeMethodDescriptionboolean
boolean
equalsImpl(Object obj)
Compare all fields that contribute to the state, ignoring transient and static fields, forthis
and the supplied objectGetter forfixedDatumRecords
int
Returns size of this serialized (marshalled) object in bytesint
Getter forrequestID
Getter forresponseStatus
Getter forvariableDatumRecords
void
marshal(DataOutputStream dos)
Serializes an object to a DataOutputStream.void
marshal(ByteBuffer byteBuffer)
Packs an object into the ByteBuffer.setFixedDatumRecords(List<FixedDatum> pFixedDatumRecords)
Setter forfixedDatumRecords
setRequestID(int pRequestID)
Setter forrequestID
setResponseStatus(ActionResponseRequestStatus pResponseStatus)
Setter forresponseStatus
setVariableDatumRecords(List<VariableDatum> pVariableDatumRecords)
Setter forvariableDatumRecords
toString()
int
unmarshal(DataInputStream dis)
Deserializes an object from a DataInputStream.int
unmarshal(ByteBuffer byteBuffer)
Unpacks a Pdu from the underlying data.Methods inherited from class edu.nps.moves.dis7.pdus.SimulationManagementWithReliabilityFamilyPdu
getOriginatingID, getReceivingID, setOriginatingID, setReceivingID
Methods inherited from class edu.nps.moves.dis7.pdus.PduBase
getPadding, getPduStatus, setPadding, setPadding, setPduStatus
Methods inherited from class edu.nps.moves.dis7.pdus.Pdu
getExerciseID, getLength, getPduType, getProtocolFamily, getProtocolVersion, getTimestamp, marshal, setExerciseID, setExerciseID, setLength, setLength, setPduType, setProtocolFamily, setProtocolVersion, setTimestamp
-
Field Details
-
requestID
protected int requestIDrequest ID -
responseStatus
status of response uid 72 -
numberOfFixedDatumRecords
protected int numberOfFixedDatumRecordsFixed datum record count -
numberOfVariableDatumRecords
protected int numberOfVariableDatumRecordsvariable datum record count -
fixedDatumRecords
Fixed datum records -
variableDatumRecords
Variable datum records
-
-
Constructor Details
-
ActionResponseRPdu
public ActionResponseRPdu()Constructor creates and configures a new instance object
-
-
Method Details
-
getMarshalledSize
public int getMarshalledSize()Returns size of this serialized (marshalled) object in bytes- Specified by:
getMarshalledSize
in interfaceMarshaller
- Overrides:
getMarshalledSize
in classSimulationManagementWithReliabilityFamilyPdu
- Returns:
- serialized size in bytes
- See Also:
- https://en.wikipedia.org/wiki/Marshalling_(computer_science)
-
setRequestID
Setter forrequestID
- Parameters:
pRequestID
- new value of interest- Returns:
- same object to permit progressive setters
-
getRequestID
public int getRequestID()Getter forrequestID
- Returns:
- value of interest
-
setResponseStatus
Setter forresponseStatus
- Parameters:
pResponseStatus
- new value of interest- Returns:
- same object to permit progressive setters
-
getResponseStatus
Getter forresponseStatus
- Returns:
- value of interest
-
setFixedDatumRecords
Setter forfixedDatumRecords
- Parameters:
pFixedDatumRecords
- new value of interest- Returns:
- same object to permit progressive setters
-
getFixedDatumRecords
Getter forfixedDatumRecords
- Returns:
- value of interest
-
setVariableDatumRecords
Setter forvariableDatumRecords
- Parameters:
pVariableDatumRecords
- new value of interest- Returns:
- same object to permit progressive setters
-
getVariableDatumRecords
Getter forvariableDatumRecords
- Returns:
- value of interest
-
marshal
Serializes an object to a DataOutputStream.- Specified by:
marshal
in interfaceMarshaller
- Overrides:
marshal
in classSimulationManagementWithReliabilityFamilyPdu
- Parameters:
dos
- the OutputStream- Throws:
Exception
- if something goes wrong- See Also:
DataOutputStream
-
unmarshal
Deserializes an object from a DataInputStream.- Specified by:
unmarshal
in interfaceMarshaller
- Overrides:
unmarshal
in classSimulationManagementWithReliabilityFamilyPdu
- Parameters:
dis
- the InputStream- Returns:
- marshalled serialized size in bytes
- Throws:
Exception
- if something goes wrong- See Also:
DataInputStream
, https://en.wikipedia.org/wiki/Marshalling_(computer_science)
-
marshal
Packs an object into the ByteBuffer.- Specified by:
marshal
in interfaceMarshaller
- Overrides:
marshal
in classSimulationManagementWithReliabilityFamilyPdu
- Parameters:
byteBuffer
- The ByteBuffer at the position to begin writing- Throws:
BufferOverflowException
- if byteBuffer is too smallReadOnlyBufferException
- if byteBuffer is read onlyException
- ByteBuffer-generated exception- See Also:
ByteBuffer
-
unmarshal
Unpacks a Pdu from the underlying data.- Specified by:
unmarshal
in interfaceMarshaller
- Overrides:
unmarshal
in classSimulationManagementWithReliabilityFamilyPdu
- Parameters:
byteBuffer
- The ByteBuffer at the position to begin reading- Returns:
- marshalled serialized size in bytes
- Throws:
BufferUnderflowException
- if byteBuffer is too smallException
- ByteBuffer-generated exception- See Also:
ByteBuffer
, https://en.wikipedia.org/wiki/Marshalling_(computer_science)
-
equals
- Overrides:
equals
in classSimulationManagementWithReliabilityFamilyPdu
-
equalsImpl
Description copied from class:Pdu
Compare all fields that contribute to the state, ignoring transient and static fields, forthis
and the supplied object- Overrides:
equalsImpl
in classSimulationManagementWithReliabilityFamilyPdu
- Parameters:
obj
- the object to compare to- Returns:
- true if the objects are equal, false otherwise.
-
toString
- Overrides:
toString
in classSimulationManagementWithReliabilityFamilyPdu
-