package mirage-console

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Console signature.

type t

The type representing the internal state of the console.

val disconnect : t -> unit Lwt.t

Disconnect from the console. While this might take some time to complete, it can never result in an error.

include Mirage_flow.S with type flow := t
type error
val pp_error : error Fmt.t
type nonrec write_error = private [>
  1. | Mirage_flow.write_error
]
val pp_write_error : write_error Fmt.t
val read : t -> (Cstruct.t Mirage_flow.or_eof, error) Stdlib.result Lwt.t
val write : t -> Cstruct.t -> (unit, write_error) Stdlib.result Lwt.t
val writev : t -> Cstruct.t list -> (unit, write_error) Stdlib.result Lwt.t
val close : t -> unit Lwt.t
val log : t -> string -> unit Lwt.t

log t str writes str to the console t, appending appropriate line endings. If close was called on the console before, str is discarded silently.

OCaml

Innovation. Community. Security.