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
use crate::{cmd, resp::BulkString, Future, PubSub, PubSubStream};

/// A redis connection used in a pub/sub scenario.
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/)
    fn publish<'a, C, M>(&'a self, channel: C, message: M) -> Future<'a, usize>
    where
        C: Into<BulkString> + 'a + Send,
        M: Into<BulkString> + 'a + Send;

    /// Subscribes the client to the specified channels.
    ///
    /// # See Also
    /// [https://redis.io/commands/subscribe/](https://redis.io/commands/subscribe/)
    fn subscribe<'a, C>(&'a self, channel: C) -> Future<'a, PubSubStream>
    where
        C: Into<BulkString> + 'a + Send;
}

impl PubSubCommands for PubSub {
    fn publish<'a, C, M>(&'a self, channel: C, message: M) -> Future<'a, usize>
    where
        C: Into<BulkString> + 'a + Send,
        M: Into<BulkString> + 'a + Send,
    {
        Box::pin(async move {
            self.multiplexer
                .send(0, cmd("PUBLISH").arg(channel).arg(message))
                .await?
                .into()
        })
    }

    fn subscribe<'a, C>(&'a self, channel: C) -> Future<'a, PubSubStream>
    where
        C: Into<BulkString> + 'a + Send,
    {
        Box::pin(async move { self.multiplexer.subscribe(channel.into()).await })
    }
}