IObjectDataOutput Interface
Namespace: Hazelcast.Serialization
Assembly: Hazelcast.Net.dll
Provides encoding methods for primitive and array of primitive types writing to the serialized byte array.
public interface IObjectDataOutput
Properties
| Endianness | The configured endianness via Endianness |
Methods
| ToByteArray(Int32) | Creates a new byte array with the internal content of the serialized data. |
| Write(Byte[]) | Writes the content of the provided byte array to this serialization output |
| Write(Byte[], Int32, Int32) | Writes the content of the provided byte array to this serialization output |
| WriteBoolean(Boolean) | Writes a |
| WriteBooleanArray(Boolean[]) | Writes the |
| WriteByte(Byte) | Writes a |
| WriteByteArray(Byte[]) | Writes the |
| WriteBytes(String) | Writes each |
| WriteChar(Char) | Writes a |
| WriteCharArray(Char[]) | Writes the |
| WriteChars(String) | Writes each |
| WriteDouble(Double) | Writes a |
| WriteDoubleArray(Double[]) | Writes the |
| WriteFloat(Single) | Writes a |
| WriteFloatArray(Single[]) | Writes the |
| WriteInt(Int32) | Writes a |
| WriteIntArray(Int32[]) | Writes the |
| WriteLong(Int64) | Writes a |
| WriteLongArray(Int64[]) | Writes the |
| WriteObject(Object) | Writes an object to this serialization output using hazelcast serialization |
| WriteSByte(SByte) | Writes a |
| WriteShort(Int16) | Writes a |
| WriteShortArray(Int16[]) | Writes the |
| WriteString(String) | Writes a |
| WriteStringArray(String[]) | Writes the |
| WriteUShort(UInt16) | Writes a |