Toolbox snapshot
The Reactive C++ Toolbox
|
#include <toolbox/resp/Exception.hpp>
#include <toolbox/util/Enum.hpp>
#include <toolbox/util/Finally.hpp>
#include <boost/container/small_vector.hpp>
#include <cstdint>
#include <stack>
Go to the source code of this file.
Classes | |
class | toolbox::resp::BasicParser< DerivedT > |
BasicParser is a class template for RESP (REdis Serialization Protocol) parsers. More... | |
Namespaces | |
namespace | toolbox |
namespace | toolbox::resp |
Enumerations | |
enum class | toolbox::resp::Type : char { toolbox::resp::None = '\0' , toolbox::resp::CommandLine = '\1' , toolbox::resp::SimpleString = '+' , toolbox::resp::Error = '-' , toolbox::resp::Integer = ':' , toolbox::resp::BulkString = '$' , toolbox::resp::Array = '*' } |
Type is an enumeration of the RESP data-types currently supported. More... | |