Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewStatusHandlersFactory ¶ added in v1.2.0
func NewStatusHandlersFactory() (*statusHandlerUtilsFactory, error)
NewStatusHandlersFactory will return the status handler factory
Types ¶
type FileLoggingHandler ¶ added in v1.1.1
type FileLoggingHandler interface {
ChangeFileLifeSpan(newDuration time.Duration) error
Close() error
IsInterfaceNil() bool
}
FileLoggingHandler will handle log file rotation
type HeaderIntegrityVerifierHandler ¶ added in v1.0.117
type HeaderIntegrityVerifierHandler interface {
Verify(header data.HeaderHandler) error
GetVersion(epoch uint32) string
IsInterfaceNil() bool
}
HeaderIntegrityVerifierHandler is the interface needed to check that a header's integrity is correct
type HeaderSigVerifierHandler ¶
type HeaderSigVerifierHandler interface {
VerifyRandSeed(header data.HeaderHandler) error
VerifyLeaderSignature(header data.HeaderHandler) error
VerifyRandSeedAndLeaderSignature(header data.HeaderHandler) error
VerifySignature(header data.HeaderHandler) error
IsInterfaceNil() bool
}
HeaderSigVerifierHandler is the interface needed to check that a header's signature is correct
type P2PAntifloodHandler ¶
type P2PAntifloodHandler interface {
CanProcessMessage(message p2p.MessageP2P, fromConnectedPeer core.PeerID) error
CanProcessMessagesOnTopic(peer core.PeerID, topic string, numMessages uint32) error
ResetForTopic(topic string)
SetMaxMessagesForTopic(topic string, maxNum uint32)
IsInterfaceNil() bool
}
P2PAntifloodHandler defines the behavior of a component able to signal that the system is too busy (or flooded) processing p2p messages
type StatusHandlerUtilsFactory ¶ added in v1.2.0
type StatusHandlerUtilsFactory interface {
Create(marshalizer marshal.Marshalizer, converter typeConverters.Uint64ByteSliceConverter) (StatusHandlersUtils, error)
}
StatusHandlerUtilsFactory is the factory for statusHandler utils
type StatusHandlersUtils ¶ added in v1.2.0
type StatusHandlersUtils interface {
StatusHandler() core.AppStatusHandler
Metrics() external.StatusMetricsHandler
UpdateStorerAndMetricsForPersistentHandler(store storage.Storer) error
IsInterfaceNil() bool
}
TODO: find a better naming StatusHandlersUtils provides some functionality for statusHandlers
Click to show internal directories.
Click to hide internal directories.