class

Redis::Future

Inherits Reference < Object

A Redis::Future is what pipelined commands return. They will be resolved with the value of the command that spawned them.

Instance methods

resolve(value : Value)

Resolves a Future with the supplied Redis::Value

Source
resolved?
Source
value

Read the value contained in this Future after it is resolved. If this method is called before the Future is resolved, it will raise a Redis::Future::NotResolved exception.

Source

Nested types