pulsar-admin 0.0.2

A Rust-based HTTP client for interacting with the Apache Pulsar REST API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod pulsar_admin;
mod inner_http_client;
mod tenants;
mod namespaces;
mod persistent_topics;
mod lookup;
mod url_constants;
mod util;

pub use pulsar_admin::{PulsarAdmin, SslParams};
pub use tenants::Tenants;
pub use namespaces::Namespaces;
pub use persistent_topics::PersistentTopics;
pub use persistent_topics::TopicStats;
pub use lookup::Lookup;
pub use lookup::LookupData;