Struct redis_async::client::PairedConnection
[−]
[src]
pub struct PairedConnection { /* fields omitted */ }
Methods
impl PairedConnection
[src]
fn send<R>(&self, msg: R) -> Box<Future<Item = RespValue, Error = Error>> where
R: Into<RespValue>,
R: Into<RespValue>,
Sends a command to Redis.
The message must be in the format of a single RESP message (or a format for which a conversion trait is defined). Returned is a future that resolves to a RESP message containing the result.
Behind the scenes the message is queued up and sent to Redis asynchronously before the
future is realised. As such, it is guaranteed that messages are sent in the same order
that send
is called.