1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
use crate::{cmd, resp::BulkString, PubSub, PubSubStream, Result};
use futures::Future;
use std::pin::Pin;
pub trait PubSubCommands {
fn publish<'a, C, M>(
&'a self,
channel: C,
message: M,
) -> Pin<Box<dyn Future<Output = Result<usize>> + 'a>>
where
C: Into<BulkString> + Send + 'a,
M: Into<BulkString> + Send + 'a;
fn subscribe<'a, C>(
&'a self,
channel: C,
) -> Pin<Box<dyn Future<Output = Result<PubSubStream>> + 'a>>
where
C: Into<BulkString> + Send + 'a;
}
impl PubSubCommands for PubSub {
fn publish<'a, C, M>(
&'a self,
channel: C,
message: M,
) -> Pin<Box<dyn Future<Output = Result<usize>> + 'a>>
where
C: Into<BulkString> + Send + 'a,
M: Into<BulkString> + Send + 'a,
{
Box::pin(async move {
self.multiplexer
.send(0, cmd("PUBLISH").arg(channel).arg(message))
.await?
.into()
})
}
fn subscribe<'a, C>(
&'a self,
channel: C,
) -> Pin<Box<dyn Future<Output = Result<PubSubStream>> + 'a>>
where
C: Into<BulkString> + Send + 'a,
{
Box::pin(async move { self.multiplexer.subscribe(channel.into()).await })
}
}