Skip to content

Overview

Backendless Counters API provides a centralized server-side facility for working with values that may be updated atomically. Every counter has a name assigned to it. The name is used in all operations to identify the counter. Since the counter value is managed centrally, multiple heterogeneous clients can access and modify the value.

All counter APIs are available via the Backendless.counters.[methodname] accessor. For example, the following code increments a counter and returns the current value:

Backendless.counters.incrementAndGet("my counter").then((counterValue) {
  print("Counter value: $counterValue");
});

Additionally, there is a shortcut approach:

String counterName = "MyCounter";
IAtomic fooCounter = Backendless.counters.of(counterName);

Codeless Reference

codeless_atomic_counters_increment_1_return_current_2