package irmin

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

Module Remote.NoneSource

Provides stub implementations of the S that always returns Error when push/pull operations are attempted.

Parameters

module H : Type.S
module R : Type.S

Signature

include S with type commit = H.t and type branch = R.t and type endpoint = unit

Remote synchronization

Sourcetype t

The type for store handles.

Sourcetype commit = H.t

The type for store heads.

Sourcetype branch = R.t

The type for branch IDs.

Sourcetype endpoint = unit

The type for sync endpoints.

Sourceval fetch : t -> ?depth:int -> endpoint -> branch -> (commit option, [ `Msg of string ]) result Lwt.t

fetch t uri fetches the contents of the remote store located at uri into the local store t. Return the head of the remote branch with the same name, which is now in the local store. No_head means no such branch exists.

Sourceval push : t -> ?depth:int -> endpoint -> branch -> (unit, [ `Msg of string | `Detached_head ]) result Lwt.t

push t uri pushes the contents of the local store t into the remote store located at uri.

Sourceval v : 'a -> t Lwt.t

Create a remote store handle.

OCaml

Innovation. Community. Security.