Package deltix.qsrv.hf.pub.codec
Interface BoundExternalDecoder
-
- All Known Subinterfaces:
BoundDecoder,FixedExternalDecoder
- All Known Implementing Classes:
CompoundDecoderImpl,FixedBoundDecoderImpl,FixedBoundExternalDecoderImpl,PolyBoundDecoderImpl,PolyBoundMixedDecoderImpl
public interface BoundExternalDecoder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddecode(deltix.util.memory.MemoryDataInput in, java.lang.Object message)Decodes an object, starting at current position of the specified MemoryDataInput.voidsetStaticFields(java.lang.Object message)Sets static values into specified message.
-
-
-
Method Detail
-
setStaticFields
void setStaticFields(java.lang.Object message)
Sets static values into specified message.- Parameters:
message- A message object to update.
-
decode
void decode(deltix.util.memory.MemoryDataInput in, java.lang.Object message)Decodes an object, starting at current position of the specified MemoryDataInput.- Parameters:
in- A MemoryDataInput to read.message- A message object to decode into.
-
-