Rpc.TransportSourcemodule Async_reader := Async_unix.Readermodule Async_writer := Async_unix.Writerinclude module type of struct include Async_rpc_kernel.Rpc.Transport end
with module Reader := Async_rpc_kernel.Rpc.Transport.Reader
with module Writer := Async_rpc_kernel.Rpc.Transport.WriterBinary headers containing message lengths. All transports should use this to ensure binary compatibility.
type t = {reader : Async_rpc_kernel.Rpc.Transport.Reader.t;writer : Async_rpc_kernel.Rpc.Transport.Writer.t;}Closes both parts of the transport.
val of_fd :
?buffer_age_limit:Async_writer.buffer_age_limit ->
?reader_buffer_size:int ->
?writer_buffer_size:int ->
max_message_size:int ->
Async_unix.Fd.t ->
t