Edit

Share via


EventHubSettings Constructors

Definition

Overloads

EventHubSettings()

Default constructor

EventHubSettings(String, String, String, Boolean, Nullable<Int32>)

Constructor

EventHubSettings()

Default constructor

public EventHubSettings ();
Public Sub New ()

Applies to

EventHubSettings(String, String, String, Boolean, Nullable<Int32>)

Constructor

public EventHubSettings (string connectionString, string consumerGroup, string path, bool startFromNow = true, int? prefetchCount = default);
new Orleans.ServiceBus.Providers.EventHubSettings : string * string * string * bool * Nullable<int> -> Orleans.ServiceBus.Providers.EventHubSettings
Public Sub New (connectionString As String, consumerGroup As String, path As String, Optional startFromNow As Boolean = true, Optional prefetchCount As Nullable(Of Integer) = Nothing)

Parameters

connectionString
String

EventHub connection string.

consumerGroup
String

EventHub consumer group.

path
String

Hub path.

startFromNow
Boolean

In cases where no checkpoint is found, this indicates if service should read from the most recent data, or from the begining of a partition.

prefetchCount
Nullable<Int32>

optional parameter that configures the receiver prefetch count.

Applies to