From c3a5213f829444452e1971822529a57da613831d Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Mon, 24 Sep 2018 12:46:39 +0200 Subject: repo: more documentation --- repository/repo.go | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'repository/repo.go') diff --git a/repository/repo.go b/repository/repo.go index 053837db..0cddf38a 100644 --- a/repository/repo.go +++ b/repository/repo.go @@ -76,16 +76,24 @@ type Repo interface { type ClockedRepo interface { Repo + // LoadClocks read the clocks values from the on-disk repo LoadClocks() error + // WriteClocks write the clocks values into the repo WriteClocks() error + // CreateTimeIncrement increment the creation clock and return the new value. CreateTimeIncrement() (lamport.Time, error) + // EditTimeIncrement increment the edit clock and return the new value. EditTimeIncrement() (lamport.Time, error) + // CreateWitness witness another create time and increment the corresponding + // clock if needed. CreateWitness(time lamport.Time) error + // EditWitness witness another edition time and increment the corresponding + // clock if needed. EditWitness(time lamport.Time) error } -- cgit