EventHubClient.PrefetchCount Property

Definition

Gets or sets the number of events that any receive operation will actively cache. By default, this value is inherited from MessagingFactory if the current instance is created from the factory method. Otherwise, the default value is 10,000.

public int PrefetchCount { get; set; }
member this.PrefetchCount : int with get, set
Public Property PrefetchCount As Integer

Property Value

The number of messages that the message receiver can simultaneously request.

Exceptions

Thrown if the value is less than the minimum required value of 10.

Remarks

Note that setting the count too low will affect the effective performance of the Event Hub receive call.

Applies to