Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func InitializeEventPubsub ¶
func InitializeEventPubsub(ur string)
InitializeEventPubsub initializes the global pubsub broadcaster server
Types ¶
type AtxCreated ¶
func (AtxCreated) GetChannel ¶
func (AtxCreated) GetChannel() ChannelId
type ChannelId ¶
type ChannelId byte
ChannelId is the Id on which subscribers must register in order to listen to messages on the channel.
type DoneCreatingBlock ¶
func (DoneCreatingBlock) GetChannel ¶
func (DoneCreatingBlock) GetChannel() ChannelId
type Event ¶
type Event interface { // GetChannel returns the channel on which this message will be published. GetChannel() ChannelId }
Event defines the interface that each message sent by the EventPublisher needs to implemet for it to correctly be routed by topic.
type EventPublisher ¶
type EventPublisher struct {
*Publisher
}
EventPublisher is the struct that publishes events to subscribers by topics.
func NewEventPublisher ¶
func NewEventPublisher(eventUrl string) (*EventPublisher, error)
NewEventPublisher is a constructor for the event publisher, it received a url string in format of tcp://localhost:56565 to start listening for connections.
func (*EventPublisher) Close ¶
func (p *EventPublisher) Close() error
func (*EventPublisher) PublishEvent ¶
func (p *EventPublisher) PublishEvent(event Event) error
PublishEvent publishes the provided event on pubsub infra. It encodes messages using XDR protocol.
type NewAtx ¶
func (NewAtx) GetChannel ¶
type NewBlock ¶
func (NewBlock) GetChannel ¶
type NewTx ¶
func (NewTx) GetChannel ¶
type RewardReceived ¶
func (RewardReceived) GetChannel ¶
func (RewardReceived) GetChannel() ChannelId
type Subscriber ¶
type Subscriber struct {
// contains filtered or unexported fields
}
Subscriber defines the struct of the receiving end of the pubsub messages.
func NewSubscriber ¶
func NewSubscriber(url string) (*Subscriber, error)
NewSubscriber received url string as input on which it will register to receive messages passed by server.
func (*Subscriber) Close ¶
func (sub *Subscriber) Close() error
Close closes the socket which in turn will Close the listener func
func (*Subscriber) StartListening ¶
func (sub *Subscriber) StartListening()
StartListening runs in a go routine and listens to all channels this subscriber is registered to. it then passes the messages received to the appropriate reader channel.
func (*Subscriber) Subscribe ¶
func (sub *Subscriber) Subscribe(topic ChannelId) (chan []byte, error)
Subscribe subscribes to the given topic, returns a channel on which data from the topic is received.
func (*Subscriber) SubscribeToAll ¶
func (sub *Subscriber) SubscribeToAll() (chan []byte, error)
SubscribeAll subscribes to all available topics.
type ValidAtx ¶
func (ValidAtx) GetChannel ¶
type ValidBlock ¶
func (ValidBlock) GetChannel ¶
func (ValidBlock) GetChannel() ChannelId