Apache.NMS.ActiveMQ.OpenWire.V6.ActiveMQBlobMessageMarshaller.TightMarshal2 C# (CSharp) Method

TightMarshal2() public method

public TightMarshal2 ( OpenWireFormat wireFormat, Object o, BinaryWriter dataOut, BooleanStream bs ) : void
wireFormat OpenWireFormat
o Object
dataOut BinaryWriter
bs BooleanStream
return void
        public override void TightMarshal2(OpenWireFormat wireFormat, Object o, BinaryWriter dataOut, BooleanStream bs)
        {
            base.TightMarshal2(wireFormat, o, dataOut, bs);

            ActiveMQBlobMessage info = (ActiveMQBlobMessage)o;
            TightMarshalString2(info.RemoteBlobUrl, dataOut, bs);
            TightMarshalString2(info.MimeType, dataOut, bs);
            bs.ReadBoolean();
        }