pub trait ReconnectService {
    // Provided methods
    fn start(
        &mut self,
        ctx: RpcContext<'_>,
        _req: ReconnectParams,
        sink: UnarySink<Empty>
    ) { ... }
    fn stop(
        &mut self,
        ctx: RpcContext<'_>,
        _req: Empty,
        sink: UnarySink<ReconnectInfo>
    ) { ... }
}

Provided Methods§

source

fn start( &mut self, ctx: RpcContext<'_>, _req: ReconnectParams, sink: UnarySink<Empty> )

source

fn stop( &mut self, ctx: RpcContext<'_>, _req: Empty, sink: UnarySink<ReconnectInfo> )

Implementors§