Struct RedisReply
Range interface to a single Redis reply.
struct RedisReply(T)
;
Constructors
Name | Description |
---|---|
this
(conn)
|
Fields
Name | Type | Description |
---|---|---|
m_conn
|
RedisConnection | |
m_lockedConnection
|
LockedConnection!RedisConnection | |
m_magic
|
uint |
Properties
Name | Type | Description |
---|---|---|
empty [get]
|
bool | |
front [get]
|
T | Returns the current element of the reply. |
frontIsNull [get]
|
bool | |
hasNext [get]
|
bool | Legacy property for hasNext/next based iteration |
lockedConnection [set]
|
LockedConnection!RedisConnection |
Methods
Name | Description |
---|---|
clearData
()
|
|
drop
()
|
|
initialize
()
|
|
next
()
|
Legacy property for hasNext/next based iteration |
popFront
()
|
Pops the current element of the reply |
readBulk
(sizeLn)
|
|
readData
()
|
Aliases
Name | Description |
---|---|
ElementType
|