Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
val schedule :
t ->
?is_fin:bool ->
kind:[ `Text | `Binary | `Continuation ] ->
Bigstringaf.t ->
off:int ->
len:int ->
unit
is_fin
defaults to true
. Set to `false` if sending multiple frames, except on the last one. NOTE: this function mutates the bigarray on clients due to the WebSocket protocol masking requirements.
val send_bytes :
t ->
?is_fin:bool ->
kind:[ `Text | `Binary | `Continuation ] ->
Stdlib.Bytes.t ->
off:int ->
len:int ->
unit
is_fin
defaults to true
. Set to `false` if sending multiple frames, except on the last one. NOTE: this function mutates the `bytes` argument on clients due to the WebSocket protocol masking requirements.
val flushed : t -> (unit -> unit) -> unit
val close : ?code:Websocket.Close_code.t -> t -> unit
val is_closed : t -> bool
val error_code : t -> [> `Exn of exn ] option