package eliom

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type 'a chan_id
val string_of_chan_id : 'a chan_id -> string
val chan_id_of_string : string -> 'a chan_id
type position =
  1. | Newest of int
  2. | After of int
  3. | Last of int option
    (*

    None means 'newest channel'

    *)
val position_of_json : Deriving_Json_lexer.lexbuf -> position
val position_to_json : Stdlib.Buffer.t -> position -> unit
val position_json : position Deriving_Json.t
type comet_stateless_request = (string * position) array
val comet_stateless_request_of_json : Deriving_Json_lexer.lexbuf -> comet_stateless_request
val comet_stateless_request_to_json : Stdlib.Buffer.t -> comet_stateless_request -> unit
val comet_stateless_request_json : comet_stateless_request Deriving_Json.t
type command =
  1. | Register of string
  2. | Close of string
val command_of_json : Deriving_Json_lexer.lexbuf -> command
val command_to_json : Stdlib.Buffer.t -> command -> unit
val command_json : command Deriving_Json.t
type comet_stateful_request =
  1. | Request_data of int
  2. | Commands of command array
val comet_stateful_request_of_json : Deriving_Json_lexer.lexbuf -> comet_stateful_request
val comet_stateful_request_to_json : Stdlib.Buffer.t -> comet_stateful_request -> unit
val comet_stateful_request_json : comet_stateful_request Deriving_Json.t
type comet_request =
  1. | Stateless of comet_stateless_request
  2. | Stateful of comet_stateful_request
val comet_request_of_json : Deriving_Json_lexer.lexbuf -> comet_request
val comet_request_to_json : Stdlib.Buffer.t -> comet_request -> unit
val comet_request_json : comet_request Deriving_Json.t
type 'a channel_data =
  1. | Data of 'a
  2. | Full
  3. | Closed
val channel_data_of_json : (Deriving_Json_lexer.lexbuf -> 'a) -> Deriving_Json_lexer.lexbuf -> 'a channel_data
val channel_data_to_json : (Stdlib.Buffer.t -> 'a -> unit) -> Stdlib.Buffer.t -> 'a channel_data -> unit
val channel_data_json : 'a Deriving_Json.t -> 'a channel_data Deriving_Json.t
type answer =
  1. | Stateless_messages of (string * (string * int) channel_data) array
  2. | Stateful_messages of (string * string channel_data) array
  3. | Timeout
  4. | State_closed
  5. | Comet_error of string
val answer_of_json : Deriving_Json_lexer.lexbuf -> answer
val answer_to_json : Stdlib.Buffer.t -> answer -> unit
val answer_json : answer Deriving_Json.t
type comet_service =
  1. | Comet_service : (unit, bool * comet_request, Eliom_service.post, Eliom_service.att, _, _, _, [ `WithoutSuffix ], unit, [ `One of bool ] Eliom_parameter.param_name * [ `One of comet_request Eliom_parameter.ocaml ] Eliom_parameter.param_name, Eliom_service.non_ocaml) Eliom_service.t * command list Stdlib.ref -> comet_service
type internal_comet_service =
  1. | Internal_comet_service : (unit, bool * comet_request, Eliom_service.post, Eliom_service.att, _, Eliom_service.non_ext, Eliom_service.reg, [ `WithoutSuffix ], unit, [ `One of bool ] Eliom_parameter.param_name * [ `One of comet_request Eliom_parameter.ocaml ] Eliom_parameter.param_name, Eliom_service.non_ocaml) Eliom_service.t * command list Stdlib.ref -> internal_comet_service
type stateless_kind =
  1. | After_kind of int
  2. | Newest_kind of int
  3. | Last_kind of int option
type 'a wrapped_channel =
  1. | Stateful_channel of comet_service * 'a chan_id
  2. | Stateless_channel of comet_service * 'a chan_id * stateless_kind
type 'a bus_send_service =
  1. | Bus_send_service : (unit, 'a list, Eliom_service.post, Eliom_service.non_att, Eliom_service.co, Eliom_service.non_ext, Eliom_service.reg, [ `WithoutSuffix ], unit, [ `One of 'a list Eliom_parameter.ocaml ] Eliom_parameter.param_name, Eliom_service.non_ocaml) Eliom_service.t -> 'a bus_send_service
type ('a, 'b) wrapped_bus = 'b wrapped_channel * 'a bus_send_service