···2233// Quarantine is one quarantined write. It is intended to be embedded.
44type Quarantine interface {
55- // Reader returns the objects written into this quarantine.
55+ // Reader exposes the objects written into this quarantine.
66 Reader
7788 // Promote publishes quarantined writes into their final destination.
99+ //
1010+ // Promote invalidates the receiver.
911 Promote() error
10121113 // Discard abandons quarantined writes.
1414+ //
1515+ // Discard invalidates the receiver.
1216 Discard() error
1317}