vertx / io.vertx.kotlin.redis / io.vertx.redis.RedisClient / bitposRangeAwait

bitposRangeAwait

suspend fun RedisClient.bitposRangeAwait(key: String, bit: Int, start: Int, stop: Int): Long

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