Class OpenWireFormat
Inheritance
System.Object
OpenWireFormat
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Assembly: Apache.NMS.ActiveMQ.dll
public class OpenWireFormat : IWireFormat
Constructors
|
Improve this Doc
View Source
Declaration
Properties
|
Improve this Doc
View Source
Declaration
public bool CacheEnabled { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Declaration
public int CacheSize { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
Declaration
public long MaxInactivityDuration { get; set; }
Property Value
Type |
Description |
System.Int64 |
|
|
Improve this Doc
View Source
Declaration
public long MaxInactivityDurationInitialDelay { get; set; }
Property Value
Type |
Description |
System.Int64 |
|
|
Improve this Doc
View Source
Declaration
public WireFormatInfo PreferredWireFormatInfo { get; set; }
Property Value
|
Improve this Doc
View Source
Declaration
public bool SizePrefixDisabled { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Declaration
public bool StackTraceEnabled { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Declaration
public bool TcpNoDelayEnabled { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Declaration
public bool TightEncodingEnabled { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Declaration
public ITransport Transport { get; set; }
Property Value
|
Improve this Doc
View Source
Declaration
public int Version { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
Methods
|
Improve this Doc
View Source
Declaration
public void addMarshaller(BaseDataStreamMarshaller marshaller)
Parameters
|
Improve this Doc
View Source
Declaration
public void clearMarshallers()
|
Improve this Doc
View Source
Declaration
public void LooseMarshalNestedObject(DataStructure o, BinaryWriter dataOut)
Parameters
Type |
Name |
Description |
DataStructure |
o |
|
System.IO.BinaryWriter |
dataOut |
|
|
Improve this Doc
View Source
Declaration
public DataStructure LooseUnmarshalNestedObject(BinaryReader dis)
Parameters
Type |
Name |
Description |
System.IO.BinaryReader |
dis |
|
Returns
|
Improve this Doc
View Source
Declaration
public void Marshal(object o, BinaryWriter ds)
Parameters
Type |
Name |
Description |
System.Object |
o |
|
System.IO.BinaryWriter |
ds |
|
|
Improve this Doc
View Source
Declaration
public void RenegotiateWireFormat(WireFormatInfo info)
Parameters
|
Improve this Doc
View Source
Declaration
public int TightMarshalNestedObject1(DataStructure o, BooleanStream bs)
Parameters
Returns
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
Declaration
public void TightMarshalNestedObject2(DataStructure o, BinaryWriter ds, BooleanStream bs)
Parameters
|
Improve this Doc
View Source
Declaration
public DataStructure TightUnmarshalNestedObject(BinaryReader dis, BooleanStream bs)
Parameters
Type |
Name |
Description |
System.IO.BinaryReader |
dis |
|
BooleanStream |
bs |
|
Returns
|
Improve this Doc
View Source
Declaration
public object Unmarshal(BinaryReader dis)
Parameters
Type |
Name |
Description |
System.IO.BinaryReader |
dis |
|
Returns
Type |
Description |
System.Object |
|
Implements