Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
val of_socket : 'a ZMQ.Socket.t -> 'a t
of_socket s
wraps the zeromq socket s
for use with Lwt
val to_socket : 'a t -> 'a ZMQ.Socket.t
to_socket s
extracts the raw zeromq socket from s
recv socket
waits for a message on socket
without blocking other Lwt threads
send ?more socket m
sends a message m
on socket
without blocking other Lwt threads
recv_all socket
waits for a multi-part message on socket
without blocking other Lwt threads
send_all socket m
sends all parts of the multi-part message m
on socket
without blocking other Lwt threads
module Router : sig ... end