Documentation ¶
Index ¶
- func SetupInProcServer(t *testing.T) (*rpc.Server, *events.MockBackend)
- type DialRPCFn
- type Service
- func (s *Service) OnNewConsensusInfo(ctx context.Context, consensusInfo *types.MinimalEpochConsensusInfo)
- func (s *Service) Start()
- func (s *Service) Status() error
- func (s *Service) Stop() error
- func (s *Service) SubscribeMinConsensusInfoEvent(ch chan<- *types.MinimalEpochConsensusInfo) event.Subscription
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func SetupInProcServer ¶
SetupInProcServer prepares in process server with defined api. Here, this method mocks vanguard client's endpoint as well as backend. Use in-memory to mock the
Types ¶
type DialRPCFn ¶
DialRPCFn dials to the given endpoint
func DialInProcClient ¶
DialInProcClient creates in process client for vanguard mocked server
func DialRPCClient ¶
func DialRPCClient() DialRPCFn
DialRPCClient creates in process client for vanguard rpc server
type Service ¶
type Service struct {
// contains filtered or unexported fields
}
Service:
- maintains connection with vanguard chain
- handles vanguard subscription for consensus info.
- sends new consensus info to all pandora subscribers.
- maintains db to store the coming consensus info from vanguard.
func NewService ¶
func NewService(ctx context.Context, vanEndpoint string, namespace string, db db.ConsensusInfoAccessDB, dialRPCFn DialRPCFn) (*Service, error)
NewService creates new service with vanguard endpoint, vanguard namespace and db
func SetupVanguardSvc ¶
SetupVanguardSvc creates vanguard client service with mocked database
func (*Service) OnNewConsensusInfo ¶
func (s *Service) OnNewConsensusInfo(ctx context.Context, consensusInfo *types.MinimalEpochConsensusInfo)
OnNewConsensusInfo :
- sends the new consensus info to all subscribed pandora clients
- store consensus info into cache as well as into kv db
func (*Service) Start ¶
func (s *Service) Start()
Start a consensus info fetcher service's main event loop.
func (*Service) SubscribeMinConsensusInfoEvent ¶
func (s *Service) SubscribeMinConsensusInfoEvent(ch chan<- *types.MinimalEpochConsensusInfo) event.Subscription
SubscribeChainHeadEvent registers a subscription of ChainHeadEvent.
Click to show internal directories.
Click to hide internal directories.