aboutsummaryrefslogtreecommitdiff
path: root/object/store/base_quarantine.go
diff options
context:
space:
mode:
Diffstat (limited to 'object/store/base_quarantine.go')
-rw-r--r--object/store/base_quarantine.go17
1 files changed, 0 insertions, 17 deletions
diff --git a/object/store/base_quarantine.go b/object/store/base_quarantine.go
deleted file mode 100644
index 754fb3ee..00000000
--- a/object/store/base_quarantine.go
+++ /dev/null
@@ -1,17 +0,0 @@
-package objectstore
-
-// BaseQuarantine is one quarantined write. It is intended to be embedded.
-type BaseQuarantine interface {
- // Reader exposes the objects written into this quarantine.
- Reader
-
- // Promote publishes quarantined writes into their final destination.
- //
- // Promote invalidates the receiver.
- Promote() error
-
- // Discard abandons quarantined writes.
- //
- // Discard invalidates the receiver.
- Discard() error
-}