package balancer
-
balancer
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Utilities for concurrency and thread safety
module type INT = sig ... end
module type COUNTER = sig ... end
An atomic counter
module SyncVar : sig ... end
Thread safe mutable that provides the gaurentees of a Multi Reader single Writer RW mutex, it handles locking and unlocking on it's own so you don't have to touch the mutex