Project distributed as open-source example and you can can copy and modify code snippet based on you need or requirements. Project contains following parts:
const ExampleEvent = "_EventExample"
type ExampleHandler1 struct {
}
func (h *ExampleHandler1) Event() string {
return ExampleEvent
}
func (h *ExampleHandler1) Execute(... interface{}) error {
fmt.Println("Run Execute...")
return nil
}
func (h *ExampleHandler1) OnSubscribe() {
fmt.Println("Run OnSubscribe...")
}
func (h *ExampleHandler1) OnUnsubscribe() {
fmt.Println("Run OnUnsubscribe...")
}
func main() {
eventBus := bus.New()
h := &ExampleHandler1{}
eventBus.Subscribe(h)
eventBus.Publish(ExampleEvent, 1, 2, "Test Message", 4.5)
defer eventBus.Unsubscribe(ExampleEvent)
}
The project intended to use as a part of part of the project, but if you want to contribute, feel free to send pull requests!
Have problems, bugs, feature ideas? We are using the github issue tracker to manage them.
We use SemVer for versioning. For the versions available, see the tags on this repository.
- Valentyn Ponomarenko - Initial work - P-A-R-U-S
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE.md file for details
- Hat tip to anyone who's code was used
- Inspiration
- etc