object_transfer 1.2.1

An object transfer library for various message broker and/or protocols
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! NATS connector module for pub/sub messaging.
//!
//! This module provides a NATS-based connector,
//! enabling asynchronous message publishing and subscription management.

mod errors;
pub mod impl_ack;
pub mod impl_ctx;
pub mod options;
mod sub_fetcher;
#[cfg(test)]
mod tests;

pub use errors::NatsSubFetcherError;
pub use options::AckSubOptions;
pub use sub_fetcher::SubFetcher;