InvokeCallback

Trait InvokeCallback 

Source
pub trait InvokeCallback {
    // Required methods
    fn operation_complete(&self, response_future: ResponseFuture);
    fn operation_succeed(&self, response: RemotingCommand);
    fn operation_fail(&self, throwable: Box<dyn Error>);
}

Required Methods§

Source

fn operation_complete(&self, response_future: ResponseFuture)

Source

fn operation_succeed(&self, response: RemotingCommand)

Source

fn operation_fail(&self, throwable: Box<dyn Error>)

Implementors§