mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 06:27:38 +03:00
parent
6c5c5d10c4
commit
09393aed8f
8 changed files with 255 additions and 27 deletions
30
framework/module/blob_store.go
Normal file
30
framework/module/blob_store.go
Normal file
|
@ -0,0 +1,30 @@
|
|||
package module
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"io"
|
||||
)
|
||||
|
||||
type Blob interface {
|
||||
Sync() error
|
||||
io.Reader
|
||||
io.Writer
|
||||
io.Closer
|
||||
}
|
||||
|
||||
var ErrNoSuchBlob = errors.New("blob_store: no such object")
|
||||
|
||||
// BlobStore is the interface used by modules providing large binary object
|
||||
// storage.
|
||||
type BlobStore interface {
|
||||
Create(key string) (Blob, error)
|
||||
|
||||
// Open returns the reader for the object specified by
|
||||
// passed key.
|
||||
//
|
||||
// If no such object exists - ErrNoSuchBlob is returned.
|
||||
Open(key string) (io.ReadCloser, error)
|
||||
|
||||
// Delete removes a set of keys from store. Non-existent keys are ignored.
|
||||
Delete(keys []string) error
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue