C# Class ppatierno.AzureSBLite.Messaging.EventHubConsumerGroup

Consumer group within an event hub
Inheritance: ppatierno.AzureSBLite.Messaging.ClientEntity
ファイルを表示 Open project: ppatierno/azuresblite

Private Properties

Property Type Description
EventHubConsumerGroup System

Public Methods

Method Description
CreateReceiver ( string partitionId ) : EventHubReceiver

Create an event hub receiver for a specified partition

CreateReceiver ( string partitionId, System.DateTime startingDateTimeUtc ) : EventHubReceiver

Create an event hub receiver for a specified partition from a starting date/time offset

CreateReceiver ( string partitionId, string startingOffset ) : EventHubReceiver

Create an event hub receiver for a specified partition from a starting offset

Private Methods

Method Description
EventHubConsumerGroup ( MessagingFactory factory, string eventHubPath, string groupName ) : System

Constructor

Method Details

CreateReceiver() public method

Create an event hub receiver for a specified partition
public CreateReceiver ( string partitionId ) : EventHubReceiver
partitionId string ID of the partition
return EventHubReceiver

CreateReceiver() public method

Create an event hub receiver for a specified partition from a starting date/time offset
public CreateReceiver ( string partitionId, System.DateTime startingDateTimeUtc ) : EventHubReceiver
partitionId string ID of the partition
startingDateTimeUtc System.DateTime Starting date/time offset at which to start receiving messages
return EventHubReceiver

CreateReceiver() public method

Create an event hub receiver for a specified partition from a starting offset
public CreateReceiver ( string partitionId, string startingOffset ) : EventHubReceiver
partitionId string ID of the partition
startingOffset string Starting offset at which to start receiving messages
return EventHubReceiver