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
use crate::{resp::BulkString, PubSub, PubSubStream, Result, cmd};
use async_trait::async_trait;
#[async_trait]
pub trait PubSubCommands {
async fn publish<C, M>(&self, channel: C, message: M) -> Result<usize>
where
C: Into<BulkString> + Send,
M: Into<BulkString> + Send;
async fn subscribe<C>(&self, channel: C) -> Result<PubSubStream>
where
C: Into<BulkString> + Send;
}
#[async_trait]
impl PubSubCommands for PubSub {
async fn publish<C, M>(&self, channel: C, message: M) -> Result<usize>
where
C: Into<BulkString> + Send,
M: Into<BulkString> + Send,
{
self.multiplexer
.send(0, cmd("PUBLISH").arg(channel).arg(message))
.await?
.into()
}
async fn subscribe<C>(&self, channel: C) -> Result<PubSubStream>
where
C: Into<BulkString> + Send,
{
self.multiplexer.subscribe(channel.into()).await
}
}