vertx / io.vertx.rxjava.redis / RedisTransaction / setbit

setbit

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

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