Apache.NMS.ActiveMQ.OpenWire.V6.ProducerAckMarshaller.LooseUnmarshal C# (CSharp) Method

LooseUnmarshal() public method

public LooseUnmarshal ( OpenWireFormat wireFormat, Object o, BinaryReader dataIn ) : void
wireFormat OpenWireFormat
o Object
dataIn System.IO.BinaryReader
return void
        public override void LooseUnmarshal(OpenWireFormat wireFormat, Object o, BinaryReader dataIn)
        {
            base.LooseUnmarshal(wireFormat, o, dataIn);

            ProducerAck info = (ProducerAck)o;
            info.ProducerId = (ProducerId) LooseUnmarshalNestedObject(wireFormat, dataIn);
            info.Size = dataIn.ReadInt32();
        }