package session-webmachine

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

Webmachine-aware session management for your everyday needs.

module type Backend = Session_cohttp.Backend

The signature for a Webmachine-compatible backend. It is the same as a Cohttp-compatible backend.

module type S = sig ... end

The signature for a Webmachine session manager

module Make (IO : Session.S.IO) (B : Backend with type +'a io = 'a IO.t) : S with type +'a io = 'a B.io and type backend = B.t and type key = B.key and type value = B.value and type period = B.period

Create a Webmachine session manager given an appropriate backend.