azeventhubs 0.20.0

An unofficial AMQP 1.0 rust client for Azure Event Hubs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Primitives for the Azure Event Hubs client.
//!
//! This module matches to the `Azure.Messaging.EventHubs.Primitives` namespace in the .NET SDK.

// TODO: mod blob_checkpoint_store;
// TODO: mod checkpoint_store;
// TODO: mod event_processor;
// TODO: mod event_processor_checkpoint;
// TODO: mod event_processor_options;
// TODO: mod event_processor_partition;
// TODO: mod event_processor_partition_ownership;
// TODO: mod pluggable_checkpoint_store_event_processor;

mod partition_receiver;
mod partition_receiver_options;

pub use partition_receiver::*;
pub use partition_receiver_options::*;