vertx / io.vertx.reactivex.redis / RedisClient / setbit

setbit

open fun setbit(key: String, offset: Long, bit: Int, handler: Handler<AsyncResult<Long>>): RedisClient

Sets or clears the bit at offset in the string value stored at key

Parameters

key - Key string

offset - Bit offset

bit - New value - must be 1 or 0

handler - Handler for the result of this call.

Return