mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-12-14 00:24:59 +00:00
41 lines
1.2 KiB
Go
41 lines
1.2 KiB
Go
package storage
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/common"
|
|
"github.com/v2fly/v2ray-core/v5/features"
|
|
)
|
|
|
|
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)
|
|
Clear(ctx context.Context)
|
|
NarrowScope(ctx context.Context, key []byte) (ScopedPersistentStorage, error)
|
|
DropScope(ctx context.Context, key []byte) error
|
|
}
|
|
|
|
type ScopedTransientStorage interface {
|
|
ScopedTransientStorage()
|
|
Put(ctx context.Context, key string, value interface{}) error
|
|
Get(ctx context.Context, key string) (interface{}, error)
|
|
List(ctx context.Context, keyPrefix string) ([]string, error)
|
|
Clear(ctx context.Context)
|
|
NarrowScope(ctx context.Context, key string) (ScopedTransientStorage, error)
|
|
DropScope(ctx context.Context, key string) error
|
|
}
|
|
|
|
type ScopedPersistentStorageService interface {
|
|
ScopedPersistentStorage
|
|
features.Feature
|
|
}
|
|
|
|
var ScopedPersistentStorageServiceType = (*ScopedPersistentStorageService)(nil)
|
|
|
|
type TransientStorageLifecycleReceiver interface {
|
|
IsTransientStorageLifecycleReceiver()
|
|
common.Closable
|
|
}
|