aboutsummaryrefslogtreecommitdiff
path: root/object/store/quarantine_writer.go
diff options
context:
space:
mode:
Diffstat (limited to 'object/store/quarantine_writer.go')
-rw-r--r--object/store/quarantine_writer.go21
1 files changed, 0 insertions, 21 deletions
diff --git a/object/store/quarantine_writer.go b/object/store/quarantine_writer.go
deleted file mode 100644
index f5656a8c..00000000
--- a/object/store/quarantine_writer.go
+++ /dev/null
@@ -1,21 +0,0 @@
-package objectstore
-
-// WriterQuarantine represents one quarantined write that accepts both object-
-// wise and pack-wise writes.
-type WriterQuarantine interface {
- Quarantine
- ObjectWriter
- PackWriter
-}
-
-// QuarantineOptions controls the options for one coordinated quarantine creation.
-type QuarantineOptions struct {
- Object ObjectQuarantineOptions
- Pack PackQuarantineOptions
-}
-
-// WriterQuarantiner creates coordinated quarantines that support both object-
-// wise and pack-wise writes.
-type WriterQuarantiner interface {
- BeginQuarantine(opts QuarantineOptions) (WriterQuarantine, error)
-}