BaseChannelMetaCounters extension
BaseChannelMetaCounters
- on
Methods
-
createMetaCounters(
Map< String, int> metaCounters) → Future<Map< String, int> > -
Available on BaseChannel, provided by the BaseChannelMetaCounters extension
Creates meta counters. This can be used to customize the channel. -
decreaseMetaCounters(
Map< String, int> metaCounters) → Future<Map< String, int> > -
Available on BaseChannel, provided by the BaseChannelMetaCounters extension
Decreases meta counters. This decreases atomically the keyed meta counter by the specified value. -
deleteAllMetaCounters(
) → Future< void> -
Available on BaseChannel, provided by the BaseChannelMetaCounters extension
Deletes all meta counters. -
deleteMetaCounters(
String key) → Future< void> -
Available on BaseChannel, provided by the BaseChannelMetaCounters extension
Deletes a meta counter. -
getAllMetaCounters(
) → Future< Map< String, int> > -
Available on BaseChannel, provided by the BaseChannelMetaCounters extension
Get all meta counters. -
getMetaCounters(
List< String> keys) → Future<Map< String, int> > -
Available on BaseChannel, provided by the BaseChannelMetaCounters extension
Gets meta counters. -
increaseMetaCounters(
Map< String, int> metaCounters) → Future<Map< String, int> > -
Available on BaseChannel, provided by the BaseChannelMetaCounters extension
Increases meta counters. This increases atomically the keyed meta counter by the specified value. -
updateMetaCounters(
Map< String, int> metaCounters) → Future<Map< String, int> > -
Available on BaseChannel, provided by the BaseChannelMetaCounters extension
Updates meta counters.