increaseMetaCounters

fun BaseChannel.increaseMetaCounters(metaCounterMap: Map<String, Int>, handler: ResultHandler<Map<String, Int>>?)

Increases meta counters. This increases atomically the keyed meta counter by the specified value.

Since

4.15.0

Parameters

metaCounterMap

The meta counter map to increase

handler

The handler for the result


suspend fun BaseChannel.increaseMetaCounters(metaCounterMap: Map<String, Int>): Map<String, Int>

Deprecated

As of 4.17.0, replaced with awaitIncreaseMetaCounters(metaCounterMap).

Replace with

awaitIncreaseMetaCounters(metaCounterMap)

Increases meta counters. This increases atomically the keyed meta counter by the specified value.

Return

The increased meta counter map

Since

4.15.0

Parameters

metaCounterMap

The meta counter map to increase