You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
316 B
12 lines
316 B
package needle_map
|
|
|
|
import (
|
|
. "github.com/chrislusf/seaweedfs/weed/storage/types"
|
|
)
|
|
|
|
type NeedleValueMap interface {
|
|
Set(key NeedleId, offset Offset, size uint32) (oldOffset Offset, oldSize uint32)
|
|
Delete(key NeedleId) uint32
|
|
Get(key NeedleId) (*NeedleValue, bool)
|
|
Visit(visit func(NeedleValue) error) error
|
|
}
|