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;

/// A redis connection used in a pub/sub scenario.
#[async_trait]
pub trait PubSubCommands {
    /// Posts a message to the given channel.
    ///
    /// # Return
    /// Integer reply: the number of clients that received the message.
    /// Note that in a Redis Cluster, only clients that are connected
    /// to the same node as the publishing client are included in the count.
    ///
    /// # See Also
    /// [https://redis.io/commands/publish/](https://redis.io/commands/publish/)
    async fn publish<C, M>(&self, channel: C, message: M) -> Result<usize>
    where
        C: Into<BulkString> + Send,
        M: Into<BulkString> + Send;

    /// Subscribes the client to the specified channels.
    ///
    /// # See Also
    /// [https://redis.io/commands/subscribe/](https://redis.io/commands/subscribe/)
    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
    }
}