object_transfer 0.0.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
//! NATS connector module for pub/sub messaging.
//!
//! This module provides a NATS-based connector,
//! enabling asynchronous message publishing and subscription management.

pub mod impl_ack;
pub mod impl_ctx;
pub mod options;
mod sub_fetcher;

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