vertx / io.vertx.reactivex.redis / RedisTransaction / bitposRange

bitposRange

open fun bitposRange(key: String, bit: Int, start: Int, stop: Int, handler: Handler<AsyncResult<String>>): RedisTransaction

Find first bit set or clear in a string

Note: when both start, and stop offsets are specified, behaviour is slightly different than if only start is specified

Parameters

key - Key string

bit - What bit value to look for - must be 1, or 0

start - Start offset

stop - End offset - inclusive

handler - Handler for the result of this call.

Return