EventHubSettings Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.