boost::redis::request::punsubscribe

Appends a PUNSUBSCRIBE command to the end of the request.

Synopses

Declared in <boost/redis/request.hpp>

Appends a PUNSUBSCRIBE command to the end of the request.

void
punsubscribe(std::initializer_list<std::string_view> patterns);

Appends a PUNSUBSCRIBE command to the end of the request.

template<class ForwardIt>
void
punsubscribe(
    ForwardIt patterns_begin,
    ForwardIt patterns_end);

Appends a PUNSUBSCRIBE command to the end of the request.

template<class Range>
void
punsubscribe(
    Range&& patterns,
    decltype(std::cbegin(patterns))* = nullptr);

Created with MrDocs