Apache.NMS.ActiveMQ.OpenWire.BaseDataStreamMarshaller.GetDataStructureType C# (CSharp) Method

GetDataStructureType() public abstract method

public abstract GetDataStructureType ( ) : byte
return byte
        public abstract byte GetDataStructureType();

Usage Example

Beispiel #1
0
        public void addMarshaller(BaseDataStreamMarshaller marshaller)
        {
            byte type = marshaller.GetDataStructureType();

            lock (this.marshalLock)
            {
                dataMarshallers[type & 0xFF] = marshaller;
            }
        }
All Usage Examples Of Apache.NMS.ActiveMQ.OpenWire.BaseDataStreamMarshaller::GetDataStructureType