1
0
mirror of https://github.com/bspeice/aeron-rs synced 2024-10-18 08:01:35 -04:00
aeron-rs/src/client/driver_proxy.rs

13 lines
376 B
Rust
Raw Normal View History

//! Proxy object for interacting with the Media Driver. Handles operations
//! involving the command-and-control file protocol.
use crate::client::concurrent::ring_buffer::ManyToOneRingBuffer;
/// Proxy object for operations involving the Media Driver
pub struct DriverProxy<'a> {
_to_driver: ManyToOneRingBuffer<'a>,
_client_id: i64,
}
impl<'a> DriverProxy<'a> {}