Commit c319d650 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 2ff47fda
...@@ -249,6 +249,11 @@ func (btail *ΔTail) Update(δZ *zodb.EventCommit) Δ { ...@@ -249,6 +249,11 @@ func (btail *ΔTail) Update(δZ *zodb.EventCommit) Δ {
*/ */
} }
func (btail *ΔTail) ForgetPast(revCut zodb.Tid) {
btail.ΔZtail.ForgetPast(revCut) // XXX stub
}
// update brings .δBtail up to date by recomputing diff XXX and taking new // update brings .δBtail up to date by recomputing diff XXX and taking new
// entries in .δZtail into account. // entries in .δZtail into account.
// func (btail *ΔTail) update() // func (btail *ΔTail) update()
...@@ -292,10 +297,6 @@ func (btail *ΔTail) Get(root *Tree, key Key, at zodb.Tid) (value Value, ok bool ...@@ -292,10 +297,6 @@ func (btail *ΔTail) Get(root *Tree, key Key, at zodb.Tid) (value Value, ok bool
return return
} }
func (btail *ΔTail) ForgetPast(revCut zodb.Tid) {
btail.ΔZtail.ForgetPast(revCut) // XXX stub
}
// δ(BTree) notes // δ(BTree) notes
// ============== // ==============
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment