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;

/// 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,
    ) -> Pin<Box<dyn Future<Output = Result<usize>> + 'a>>
    where
        C: Into<BulkString> + Send + 'a,
        M: Into<BulkString> + Send + 'a;

    /// 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,
    ) -> 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 })
    }
}