Documentation ¶
Index ¶
- type Config
- type Engine
- func (e *Engine) Done() <-chan struct{}
- func (e *Engine) Process(channel channels.Channel, originID flow.Identifier, event interface{}) error
- func (e *Engine) ProcessLocal(event interface{}) error
- func (e *Engine) Ready() <-chan struct{}
- func (e *Engine) Submit(channel channels.Channel, originID flow.Identifier, event interface{})
- func (e *Engine) SubmitLocal(event interface{})
- type FinalizedHeaderCache
- type OptionFunc
- type RequestHandler
- type RequestHandlerEngine
- type RequestHeap
- type ResponseSender
- type ResponseSenderImpl
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
func DefaultConfig ¶
func DefaultConfig() *Config
type Engine ¶
type Engine struct {
// contains filtered or unexported fields
}
Engine is the synchronization engine, responsible for synchronizing chain state.
func New ¶
func New( log zerolog.Logger, metrics module.EngineMetrics, net network.Network, me module.Local, blocks storage.Blocks, comp network.Engine, core module.SyncCore, finalizedHeader *FinalizedHeaderCache, participantsProvider identifier.IdentifierProvider, opts ...OptionFunc, ) (*Engine, error)
New creates a new main chain synchronization engine.
func (*Engine) Done ¶
func (e *Engine) Done() <-chan struct{}
Done returns a done channel that is closed once the engine has fully stopped.
func (*Engine) Process ¶
func (e *Engine) Process(channel channels.Channel, originID flow.Identifier, event interface{}) error
Process processes the given event from the node with the given origin ID in a blocking manner. It returns the potential processing error when done.
func (*Engine) ProcessLocal ¶
ProcessLocal processes an event originating on the local node.
func (*Engine) Ready ¶
func (e *Engine) Ready() <-chan struct{}
Ready returns a ready channel that is closed once the engine has fully started.
func (*Engine) Submit ¶
func (e *Engine) Submit(channel channels.Channel, originID flow.Identifier, event interface{})
Submit submits the given event from the node with the given origin ID for processing in a non-blocking manner. It returns instantly and logs a potential processing error internally when done.
func (*Engine) SubmitLocal ¶
func (e *Engine) SubmitLocal(event interface{})
SubmitLocal submits an event originating on the local node.
type FinalizedHeaderCache ¶ added in v0.21.0
type FinalizedHeaderCache struct {
// contains filtered or unexported fields
}
FinalizedHeaderCache represents the cached value of the latest finalized header. It is used in Engine to access latest valid data.
func NewFinalizedHeaderCache ¶ added in v0.21.0
func NewFinalizedHeaderCache(log zerolog.Logger, state protocol.State, finalizationDistributor *pubsub.FinalizationDistributor) (*FinalizedHeaderCache, error)
NewFinalizedHeaderCache creates a new finalized header cache.
func (*FinalizedHeaderCache) Done ¶ added in v0.21.0
func (f *FinalizedHeaderCache) Done() <-chan struct{}
func (*FinalizedHeaderCache) Get ¶ added in v0.21.0
func (f *FinalizedHeaderCache) Get() *flow.Header
Get returns the last locally cached finalized header.
func (*FinalizedHeaderCache) Ready ¶ added in v0.21.0
func (f *FinalizedHeaderCache) Ready() <-chan struct{}
type OptionFunc ¶
type OptionFunc func(*Config)
func WithPollInterval ¶
func WithPollInterval(interval time.Duration) OptionFunc
WithPollInterval sets a custom interval at which we scan for poll items
func WithScanInterval ¶
func WithScanInterval(interval time.Duration) OptionFunc
WithScanInterval sets a custom interval at which we scan for pending items and batch them for requesting.
type RequestHandler ¶ added in v0.23.9
type RequestHandler struct {
// contains filtered or unexported fields
}
func NewRequestHandler ¶ added in v0.23.9
func NewRequestHandler( log zerolog.Logger, metrics module.EngineMetrics, responseSender ResponseSender, me module.Local, blocks storage.Blocks, core module.SyncCore, finalizedHeader *FinalizedHeaderCache, queueMissingHeights bool, ) *RequestHandler
func (*RequestHandler) Done ¶ added in v0.23.9
func (r *RequestHandler) Done() <-chan struct{}
Done returns a done channel that is closed once the engine has fully stopped.
func (*RequestHandler) Process ¶ added in v0.23.9
func (r *RequestHandler) Process(channel channels.Channel, originID flow.Identifier, event interface{}) error
Process processes the given event from the node with the given origin ID in a blocking manner. It returns the potential processing error when done.
func (*RequestHandler) Ready ¶ added in v0.23.9
func (r *RequestHandler) Ready() <-chan struct{}
Ready returns a ready channel that is closed once the engine has fully started.
type RequestHandlerEngine ¶ added in v0.21.0
type RequestHandlerEngine struct {
// contains filtered or unexported fields
}
func NewRequestHandlerEngine ¶ added in v0.21.0
func NewRequestHandlerEngine( logger zerolog.Logger, metrics module.EngineMetrics, net network.Network, me module.Local, blocks storage.Blocks, core module.SyncCore, finalizedHeader *FinalizedHeaderCache, ) (*RequestHandlerEngine, error)
func (*RequestHandlerEngine) Done ¶ added in v0.21.0
func (r *RequestHandlerEngine) Done() <-chan struct{}
func (*RequestHandlerEngine) Process ¶ added in v0.21.0
func (r *RequestHandlerEngine) Process(channel channels.Channel, originID flow.Identifier, event interface{}) error
func (*RequestHandlerEngine) Ready ¶ added in v0.21.0
func (r *RequestHandlerEngine) Ready() <-chan struct{}
type RequestHeap ¶ added in v0.19.0
type RequestHeap struct {
// contains filtered or unexported fields
}
RequestHeap is a special structure that implements engine.MessageStore interface and indexes requests by originator. If request will be sent by same originator then it will replace the old one. Comparing to default FIFO queue this one can contain MAX one request for origin ID. Getting value from queue as well as ejecting is pseudo-random.
func NewRequestHeap ¶ added in v0.19.0
func NewRequestHeap(limit uint) *RequestHeap
type ResponseSender ¶ added in v0.23.9
type ResponseSender interface {
SendResponse(interface{}, flow.Identifier) error
}
type ResponseSenderImpl ¶ added in v0.23.9
type ResponseSenderImpl struct {
// contains filtered or unexported fields
}
func NewResponseSender ¶ added in v0.23.9
func NewResponseSender(con network.Conduit) *ResponseSenderImpl
func (*ResponseSenderImpl) SendResponse ¶ added in v0.23.9
func (r *ResponseSenderImpl) SendResponse(res interface{}, target flow.Identifier) error