mirror of
https://github.com/v2fly/v2ray-core.git
synced 2026-04-20 12:39:12 -04:00
move scoped storage to independent package
This commit is contained in:
@@ -13,23 +13,3 @@ type PersistentStorageEngine interface {
|
||||
Get(ctx context.Context, key []byte) ([]byte, error)
|
||||
List(ctx context.Context, keyPrefix []byte) ([][]byte, error)
|
||||
}
|
||||
|
||||
type ScopedPersistentStorage interface {
|
||||
ScopedPersistentStorageEngine()
|
||||
|
||||
Put(ctx context.Context, key []byte, value []byte) error
|
||||
Get(ctx context.Context, key []byte) ([]byte, error)
|
||||
List(ctx context.Context, keyPrefix []byte) ([][]byte, error)
|
||||
|
||||
ClearIfCharacteristicMismatch(ctx context.Context, characteristic []byte) error
|
||||
NarrowScope(ctx context.Context, key []byte) (ScopedPersistentStorage, error)
|
||||
}
|
||||
|
||||
type ScopedTransientStorage interface {
|
||||
ScopedTransientStorage()
|
||||
Put(ctx context.Context, key []byte, value interface{}) error
|
||||
Get(ctx context.Context, key []byte) (interface{}, error)
|
||||
List(ctx context.Context, keyPrefix []byte) ([][]byte, error)
|
||||
Clear(ctx context.Context)
|
||||
NarrowScope(ctx context.Context, key []byte) (ScopedPersistentStorage, error)
|
||||
}
|
||||
|
||||
25
features/extension/storage/storage.go
Normal file
25
features/extension/storage/storage.go
Normal file
@@ -0,0 +1,25 @@
|
||||
package storage
|
||||
|
||||
import (
|
||||
"context"
|
||||
)
|
||||
|
||||
type ScopedPersistentStorage interface {
|
||||
ScopedPersistentStorageEngine()
|
||||
|
||||
Put(ctx context.Context, key []byte, value []byte) error
|
||||
Get(ctx context.Context, key []byte) ([]byte, error)
|
||||
List(ctx context.Context, keyPrefix []byte) ([][]byte, error)
|
||||
|
||||
ClearIfCharacteristicMismatch(ctx context.Context, characteristic []byte) error
|
||||
NarrowScope(ctx context.Context, key []byte) (ScopedPersistentStorage, error)
|
||||
}
|
||||
|
||||
type ScopedTransientStorage interface {
|
||||
ScopedTransientStorage()
|
||||
Put(ctx context.Context, key []byte, value interface{}) error
|
||||
Get(ctx context.Context, key []byte) (interface{}, error)
|
||||
List(ctx context.Context, keyPrefix []byte) ([][]byte, error)
|
||||
Clear(ctx context.Context)
|
||||
NarrowScope(ctx context.Context, key []byte) (ScopedPersistentStorage, error)
|
||||
}
|
||||
Reference in New Issue
Block a user