Parameter Make.1-Conn
module Address : sig ... end
include Persistent_connection_kernel__.Persistent_connection_kernel_intf.Closable with type t := t
val close : t -> unit Async_kernel.Deferred.t
close t
closes the connection. The returned deferred becomes determined once any resources needed to maintain the connection have been released.
val is_closed : t -> bool
is_closed t
returns true ifclose
has ever been called (even if the returned deferred has not yet been fulfilled).Note that some modules implementing
Closable
may call close internally upon noticing that the connection was closed by the other side. The interface of such a module ought to say that this is the case.
val close_finished : t -> unit Async_kernel.Deferred.t
close_finished t
becomes determined at the same time as the result of the first call toclose
.close_finished
differs fromclose
in that it does not have the side effect of initiating a close.