package nsq

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t
type config = {
  1. max_in_flight : int;
  2. max_attempts : int;
  3. backoff_multiplier : float;
}
val default_config : unit -> config
val create : ?config:config -> address list -> Topic.t -> Channel.t -> (bytes -> handler_result Lwt.t) -> (t, string) Containers.Result.t
val run : t -> unit Lwt.t