This repository was archived by the owner on Jun 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathinterface.go
46 lines (39 loc) · 1.53 KB
/
interface.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Package exchange defines the IPFS exchange interface
package exchange
import (
"context"
"io"
blocks "github.com/ipfs/go-block-format"
cid "github.com/ipfs/go-cid"
)
// Interface defines the functionality of the IPFS block exchange protocol.
//
// Deprecated: use github.com/ipfs/boxo/exchange.Interface
type Interface interface { // type Exchanger interface
Fetcher
// NotifyNewBlocks tells the exchange that new blocks are available and can be served.
NotifyNewBlocks(ctx context.Context, blocks ...blocks.Block) error
io.Closer
}
// Fetcher is an object that can be used to retrieve blocks
//
// Deprecated: use github.com/ipfs/boxo/exchange.Fetcher
type Fetcher interface {
// GetBlock returns the block associated with a given cid.
GetBlock(context.Context, cid.Cid) (blocks.Block, error)
// GetBlocks returns the blocks associated with the given cids.
// If the requested blocks are not found immediately, this function should hang until
// they are found. If they can't be found later, it's also acceptable to terminate.
GetBlocks(context.Context, []cid.Cid) (<-chan blocks.Block, error)
}
// SessionExchange is an exchange.Interface which supports
// sessions.
//
// Deprecated: use github.com/ipfs/boxo/exchange.SessionExchange
type SessionExchange interface {
Interface
// NewSession generates a new exchange session. You should use this, rather
// that calling GetBlocks, any time you intend to do several related calls
// in a row. The exchange can leverage that to be more efficient.
NewSession(context.Context) Fetcher
}