Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type MessageEvent ¶
type MessageEvent struct {
ID string
Name string
Data string
// HasID is used to signal the ID has been explicitly set.
// It is not necessary to enable this flag if ID != ""
// It must be enabled when ID == ""
HasID bool
}
MessageEvent presents the payload being parsed from an EventSource.
func (*MessageEvent) GetData ¶
func (m *MessageEvent) GetData() string
GetData returns the data of the event.
func (*MessageEvent) GetID ¶
func (m *MessageEvent) GetID() (id string, hasID bool)
GetID returns the ID of the event.
func (*MessageEvent) GetName ¶
func (m *MessageEvent) GetName() string
GetName returns the name of the event.
Click to show internal directories.
Click to hide internal directories.