[][src]Trait capnp_rpc::VatNetwork

pub trait VatNetwork<VatId> {
    fn connect(&mut self, host_id: VatId) -> Option<Box<dyn Connection<VatId>>>;
fn accept(&mut self) -> Promise<Box<dyn Connection<VatId>>, Error>;
fn drive_until_shutdown(&mut self) -> Promise<(), Error>; }

Required methods

fn connect(&mut self, host_id: VatId) -> Option<Box<dyn Connection<VatId>>>

Returns None if hostId refers to the local vat.

fn accept(&mut self) -> Promise<Box<dyn Connection<VatId>>, Error>

Waits for the next incoming connection and return it.

fn drive_until_shutdown(&mut self) -> Promise<(), Error>

Loading content...

Implementors

impl<T> VatNetwork<Side> for VatNetwork<T> where
    T: AsyncRead + Unpin
[src]

Loading content...