ShmClient

Trait ShmClient 

Source
pub trait ShmClient:
    Debug
    + Send
    + Sync
    + WithProtocolID {
    // Required method
    fn attach(&self, segment: SegmentID) -> ZResult<Arc<dyn ShmSegment>>;
}
Expand description

ShmClient - client factory implementation for particular shared memory protocol

This API has been marked as unstable: it works as advertised, but it may be changed in a future release.

Required Methods§

Source

fn attach(&self, segment: SegmentID) -> ZResult<Arc<dyn ShmSegment>>

Attach to particular shared memory segment

This API has been marked as unstable: it works as advertised, but it may be changed in a future release.

Implementors§