2
0
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:
Marcelo Zimbres
2021-10-10 15:00:22 +02:00
parent 62e34767ca
commit 05aff2f3c6
18 changed files with 540 additions and 439 deletions

View File

@@ -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