Skip to content

bfu4/golisten

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

golisten

super simple and small event bus structure for golang that allows emissions as go routines.

Usage

import (
	"github.com/bfu4/golisten"
)

func UseEventBus() {
	busName := "myBus"
	eventName := "myEventName"
	bus := golisten.DemandRoutedBus(busName)

	l := golisten.ListenerFrom(eventName,
        func(e *golisten.Event) {
        	// we can use a type assertion here
        	println(e.Data[0].(string))
        	// will print hello
        },
    )
    
    bus.AddListener(l)
	e := golisten.CreateEvent(eventName, "hello")
    bus.CallEvent(e)
}

About

simple golang event bus structure

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages