github.com/onflow/flow-go@v0.35.7-crescendo-preview.23-atree-inlining/consensus/hotstuff/event_loop.go (about)

     1  package hotstuff
     2  
     3  import (
     4  	"github.com/onflow/flow-go/module"
     5  )
     6  
     7  // EventLoop performs buffer and processing of incoming proposals and QCs.
     8  type EventLoop interface {
     9  	module.HotStuff
    10  	TimeoutCollectorConsumer
    11  	VoteCollectorConsumer
    12  }