Share via


AdlsClient.ConcurrentAppend(String, Boolean, Byte[], Int32, Int32) Method

Definition

Synchronous API to perform concurrent append at server. The offset at which append will occur is determined by server. It is highly recomended to call this api with data size less than equals 4MB. Backend gurantees 4MB atomic appends.

public virtual void ConcurrentAppend (string path, bool autoCreate, byte[] dataBytes, int offset, int length);
abstract member ConcurrentAppend : string * bool * byte[] * int * int -> unit
override this.ConcurrentAppend : string * bool * byte[] * int * int -> unit
Public Overridable Sub ConcurrentAppend (path As String, autoCreate As Boolean, dataBytes As Byte(), offset As Integer, length As Integer)

Parameters

path
String

Path of the file

autoCreate
Boolean
dataBytes
Byte[]

Array of bytes to write to the file

offset
Int32

Offset in the byte array

length
Int32

Number of bytes to write from the offset

Applies to