Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type PieceStoreAPI ¶
type PieceStoreAPI interface { GetPiece(ctx context.Context, key string, offset, limit int64) ([]byte, error) PutPiece(key string, value []byte) error }
PieceStoreAPI provides an interface to enable mocking the StoreClient's API operation. This makes unit test to test your code easier.
type StoreClient ¶
type StoreClient struct {
// contains filtered or unexported fields
}
func NewStoreClient ¶
func NewStoreClient(pieceConfig *storage.PieceStoreConfig) (*StoreClient, error)
func (*StoreClient) DeletePiece ¶ added in v0.2.0
func (client *StoreClient) DeletePiece(ctx context.Context, key string) error
DeletePiece deletes piece from piece store.
Click to show internal directories.
Click to hide internal directories.