Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Handler ¶
type Handler interface { // Handle starts a service thread for a given gRPC connection and services the broadcast connection Handle(srv ab.AtomicBroadcast_BroadcastServer) error }
Handler defines an interface which handles broadcasts
func NewHandlerImpl ¶
func NewHandlerImpl(sm SupportManager) Handler
NewHandlerImpl constructs a new implementation of the Handler interface
type Support ¶
type Support interface { // Enqueue accepts a message and returns true on acceptance, or false on shutdown Enqueue(env *cb.Envelope) bool // Filters returns the set of broadcast filters for this chain Filters() *filter.RuleSet }
Support provides the backing resources needed to support broadcast on a chain
type SupportManager ¶
type SupportManager interface { // GetChain gets the chain support for a given ChainID GetChain(chainID string) (Support, bool) // ProposeChain accepts a configuration transaction for a chain which does not already exists // The status returned is whether the proposal is accepted for consideration, only after consensus // occurs will the proposal be committed or rejected ProposeChain(env *cb.Envelope) cb.Status }
SupportManager provides a way for the Handler to look up the Support for a chain
Click to show internal directories.
Click to hide internal directories.