Documentation ¶
Overview ¶
Package fetcher contains the block announcement based synchronization.
Index ¶
- type Fetcher
- func (f *Fetcher) Enqueue(peer string, unit *modules.Unit) error
- func (f *Fetcher) FilterBodies(peer string, transactions [][]*modules.Transaction, time time.Time) [][]*modules.Transaction
- func (f *Fetcher) FilterHeaders(peer string, headers []*modules.Header, time time.Time) []*modules.Header
- func (f *Fetcher) Notify(peer string, hash common.Hash, number *modules.ChainIndex, time time.Time, ...) error
- func (f *Fetcher) Start()
- func (f *Fetcher) Stop()
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Fetcher ¶
type Fetcher struct {
// contains filtered or unexported fields
}
Fetcher is responsible for accumulating block announcements from various peers and scheduling them for retrieval.
func New ¶
func New(getBlock headerExistFn, verifyUnit unitVerifierFn, broadcastBlock blockBroadcasterFn, chainHeight chainHeightFn, insertChain chainInsertFn, dropPeer peerDropFn) *Fetcher
New creates a block fetcher to retrieve blocks based on hash announcements.
func (*Fetcher) FilterBodies ¶
func (f *Fetcher) FilterBodies(peer string, transactions [][]*modules.Transaction, time time.Time) [][]*modules.Transaction
FilterBodies extracts all the block bodies that were explicitly requested by the fetcher, returning those that should be handled differently.
func (*Fetcher) FilterHeaders ¶
func (f *Fetcher) FilterHeaders(peer string, headers []*modules.Header, time time.Time) []*modules.Header
FilterHeaders extracts all the headers that were explicitly requested by the fetcher, returning those that should be handled differently.
func (*Fetcher) Notify ¶
func (f *Fetcher) Notify(peer string, hash common.Hash, number *modules.ChainIndex, time time.Time, headerFetcher headerRequesterFn, bodyFetcher bodyRequesterFn) error
Notify announces the fetcher of the potential availability of a new block in the network.