Skip to content

Observable implementation of Azure Event Hub based transport.

License

Notifications You must be signed in to change notification settings

Tuatan/Observables.Azure.EventHub

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Nuget

Observable Azure EventHub

That is an observable implementation of Azure EventHubs based transport.

Usage

Exposing an Azure Event Hub instance as a push source:

new EventHubListener(
    "myEventHub", 
    "connectionString", 
    string.Empty, 
    "PartitionA", 
    TimeSpan.FromSeconds(15), 
    10).Dump();

Publish an event to an Azure Event Hub instance:

var publisher = new EventHubPublisher("connectionString", "myEventHub");
publisher.OnNext(new EventData());

About

Observable implementation of Azure Event Hub based transport.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages