mirror of
https://github.com/boostorg/redis.git
synced 2026-02-23 03:52:18 +00:00
Refactoring listed below:
- Improvements in the organization. - Adds support for the default token on the consumer.
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
|
||||
namespace aedis {
|
||||
|
||||
/// Supported redis commands.
|
||||
/// List of the supported redis commands.
|
||||
enum class command
|
||||
{ acl_load
|
||||
, acl_save
|
||||
@@ -75,7 +75,12 @@ enum class command
|
||||
, unknown
|
||||
};
|
||||
|
||||
/// Converts the command to a string.
|
||||
std::string to_string(command c);
|
||||
|
||||
/** Writes the text representation of the command to the output
|
||||
* stream.
|
||||
*/
|
||||
std::ostream& operator<<(std::ostream& os, command c);
|
||||
|
||||
} // aedis
|
||||
|
||||
Reference in New Issue
Block a user