vertx / io.vertx.reactivex.redis / RedisTransaction / linsert

linsert

open fun linsert(key: String, option: InsertOptions, pivot: String, value: String, handler: Handler<AsyncResult<String>>): RedisTransaction

Insert an element before or after another element in a list

Parameters

key - Key string

option - BEFORE or AFTER

pivot - Key to use as a pivot

value - Value to be inserted before or after the pivot

handler - Handler for the result of this call.

Return