pub trait HandleOpRegisterer {
    // Required methods
    fn read_registerer(&self) -> Arc<TTas<Option<AsyncOp<usize>>>>;
    fn write_registerer(&self) -> Arc<TTas<Option<AsyncOp<usize>>>>;
}
Expand description

Operation registrar for Proactive IO, represents the outer ring that will send & receive submissions and completions respectively.

Required Methods§

Implementors§