type Engine interface {
// Start the engine with the given request ID for bootstrapping Start(ctx context.Context, startReqID uint32) error// Shutdown the engine Shutdown(ctx context.Context) error
}
Engine describes the standard interface of a consensus engine