Arduino-Redis
A Redis library for Arduino.
|
A Simple String: https://redis.io/topics/protocol#resp-simple-strings
Definition at line 68 of file RedisInternal.h.
Public Member Functions | |
RedisSimpleString (Client &c) | |
~RedisSimpleString () override | |
virtual String | RESP () override |
Public Member Functions inherited from RedisObject | |
RedisObject () | |
RedisObject (Type tc) | |
RedisObject (Type tc, Client &c) | |
virtual | ~RedisObject () |
virtual void | init (Client &client) |
virtual | operator String () |
Type | type () const |
Additional Inherited Members | |
Public Types inherited from RedisObject | |
enum | Type { NoType = '\0', SimpleString = '+', Error = '-', Integer = ':', BulkString = '$', Array = '*', InternalError = '!' } |
Static Public Member Functions inherited from RedisObject | |
static std::shared_ptr< RedisObject > | parseTypeNonBlocking (Client &) |
static std::shared_ptr< RedisObject > | parseType (Client &) |
Protected Attributes inherited from RedisObject | |
String | data |
Type | _type = Type::NoType |
#include <RedisInternal.h>
|
inline |
Definition at line 71 of file RedisInternal.h.
|
inlineoverride |
Definition at line 72 of file RedisInternal.h.
|
overridevirtual |
Produce the Redis serialization protocol (RESP) representation. Must be overridden.
Implements RedisObject.
Definition at line 12 of file RedisInternal.cpp.