EventHubClient.CreateBatch Method

Definition

Overloads

CreateBatch()

Creates a batch where event data objects can be added for later SendAsync call.

CreateBatch(BatchOptions)

Creates a batch where event data objects can be added for later SendAsync call.

CreateBatch()

Source:
EventHubClient.cs

Creates a batch where event data objects can be added for later SendAsync call.

public Microsoft.Azure.EventHubs.EventDataBatch CreateBatch ();
member this.CreateBatch : unit -> Microsoft.Azure.EventHubs.EventDataBatch
Public Function CreateBatch () As EventDataBatch

Returns

Returns EventDataBatch.

Applies to

CreateBatch(BatchOptions)

Source:
EventHubClient.cs

Creates a batch where event data objects can be added for later SendAsync call.

public Microsoft.Azure.EventHubs.EventDataBatch CreateBatch (Microsoft.Azure.EventHubs.BatchOptions options);
member this.CreateBatch : Microsoft.Azure.EventHubs.BatchOptions -> Microsoft.Azure.EventHubs.EventDataBatch
Public Function CreateBatch (options As BatchOptions) As EventDataBatch

Parameters

options
BatchOptions

BatchOptions to define partition key and max message size.

Returns

Returns EventDataBatch.

Applies to