package uwt

  1. Overview
  2. Docs
libuv bindings

Install

dune-project
 Dependency

Authors

Maintainers

Sources

uwt-0.3.0.2.tar.gz
sha256=1c4a49f4cffc017fff8a47563653f5a9ed4007bbd6705fd9737a211ff3d864e2
md5=25fbbf9b39c072f9667e6fdfba108556

doc/uwt.ext/Uwt_throttle/index.html

Module Uwt_throttle

Rate limiters

This module defines rate limiters. A rate limiter is parametrized by its limit and a maximum waiting time. The wait function will collaboratively hang for a delay necessary to respect the limit. If that delay exceeds the maximum waiting time, wait returns false; otherwise it returns true.

module type S = sig ... end
module Make (H : Hashtbl.HashedType) : S with type key = H.t