Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Lwt_zmq.Socketval of_socket : 'a ZMQ.Socket.t -> 'a tof_socket s wraps the zeromq socket s for use with Lwt
val to_socket : 'a t -> 'a ZMQ.Socket.tto_socket s extracts the raw zeromq socket from s
val recv : 'a t -> string Lwt.trecv socket waits for a message on socket without blocking other Lwt threads
val send : ?more:bool -> 'a t -> string -> unit Lwt.tsend ?more socket m sends a message m on socket without blocking other Lwt threads
val recv_all : 'a t -> string list Lwt.trecv_all socket waits for a multi-part message on socket without blocking other Lwt threads
val send_all : 'a t -> string list -> unit Lwt.tsend_all socket m sends all parts of the multi-part message m on socket without blocking other Lwt threads
module Router : sig ... end