tick method

void tick(
  1. int monotonicMs,
  2. int unixMs
)

Advance the clock. monotonicMs drives every deadline; unixMs only stamps a message the server did not stamp itself.

Implementation

void tick(int monotonicMs, int unixMs) {
  _alive();
  _bindings.tick(_handle, monotonicMs, unixMs);
}