Apache.NMS.ActiveMQ.OpenWire.BaseDataStreamMarshaller.GetDataStructureType C# (CSharp) 메소드

GetDataStructureType() 공개 추상적인 메소드

public abstract GetDataStructureType ( ) : byte
리턴 byte
        public abstract byte GetDataStructureType();

Usage Example

예제 #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