Click or drag to resize

DataWriterWritePackedInt64 Method

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Write an Int64 value using a variable-length storage format.

Namespace:  Tangosol.IO
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public virtual void WritePackedInt64(
	long l
)

Parameters

l
Type: SystemInt64
An Int64 value to write.
Exceptions
ExceptionCondition
IOException If an I/O error occurs.
Remarks

The "packed" format includes a sign bit (0x40) and a continuation bit (0x80) in the first byte, followed by the least 6 significant bits of the long value. Subsequent bytes (each appearing only if the previous byte had its continuation bit set) include a continuation bit (0x80) and the next least 7 significant bits of the long value. In this way, a 64-bit value is encoded into 1-10 bytes, depending on the magnitude of the value being encoded.

See Also