BinaryDeltaCompressorWriteAppend Method |
.NET API Reference for Oracle® Coherence Community Edition
(14.1.1.0)
E55634-01
Encode a binary diff "append" operator to indicate that bytes should
be appended from the delta stream to the new value.
Namespace:
Tangosol.IO
Assembly:
Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntaxprotected static DataWriter WriteAppend(
DataWriter writer,
int cbMax,
byte[] ab,
int of,
int cb
)
Parameters
- writer
- Type: Tangosol.IODataWriter
The existing DataWriter for the diff, or null
- cbMax
- Type: SystemInt32
The expected resulting size of the write buffer.
- ab
- Type: SystemByte
The byte array from which to get the bytes to append.
- of
- Type: SystemInt32
The offset of the old buffer to append.
- cb
- Type: SystemInt32
The length of the old buffer to append.
Return Value
Type:
DataWriter
A DataWriter, never null.
See Also