client

package
v0.2.0-alpha.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 5, 2023 License: GPL-3.0 Imports: 8 Imported by: 0

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(key string) error

DeletePiece deletes piece from piece store.

func (*StoreClient) GetPiece added in v0.1.1

func (client *StoreClient) GetPiece(ctx context.Context, key string, offset, limit int64) ([]byte, error)

GetPiece gets piece data from piece store.

func (*StoreClient) PutPiece added in v0.1.1

func (client *StoreClient) PutPiece(key string, value []byte) error

PutPiece puts piece to piece store.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL