Oracle® Coherence .NET API Reference Release 3.7.1
E22844-03

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: 3.7.1.23 (3.7.1.23)

Syntax

C#
protected static DataWriter WriteAppend(
	DataWriter writer,
	int cbMax,
	byte[] ab,
	int of,
	int cb
)

Parameters

writer
Type: Tangosol.IO..::.DataWriter
The existing DataWriter for the diff, or null
cbMax
Type: System..::.Int32
The expected resulting size of the write buffer.
ab
Type: array< System..::.Byte >[]()[]
The byte array from which to get the bytes to append.
of
Type: System..::.Int32
The offset of the old buffer to append.
cb
Type: System..::.Int32
The length of the old buffer to append.

Return Value

A DataWriter, never null.

See Also