ekg-0.3.1.2: Remote monitoring of processes

Safe HaskellSafe-Inferred

System.Remote.Counter

Description

This module defines a type for mutable, integer-valued counters. Counters are non-negative, monotonically increasing values and can be used to track e.g. the number of requests served since program start. All operations on counters are thread-safe.

Synopsis

Documentation

data Counter Source

A mutable, integer-valued counter.

Instances

Ref Counter Int 

inc :: Counter -> IO ()Source

Increase the counter by one.

add :: Counter -> Int -> IO ()Source

Increase the counter by the given amount.