ListCommands<K, V> class abstract

list operation commands

Implementers

Constructors

ListCommands()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

lpush(K key, List<V> values) Future<bool>
LPUSH command (push to left side)
lrange(K key, int startIndex, int endIndex) Future<List<V>>
LRANGE command (get range startIndex to endIndex)
lset(K key, int index, V value) Future<bool>
LSET command (set value that placed in index)
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
rpush(K key, List<V> values) Future<bool>
RPUSH command (push to right side)
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited