Apache.NMS.ActiveMQ.OpenWire.BaseDataStreamMarshaller.GetDataStructureType C# (CSharp) Méthode

GetDataStructureType() public abstract méthode

public abstract GetDataStructureType ( ) : byte
Résultat byte
        public abstract byte GetDataStructureType();

Usage Example

Exemple #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