This package offers a high-performance, in-process event dispatcher for Go, ideal for decoupling modules and enabling asynchronous event handling. It supports both synchronous and asynchronous processing, focusing on speed and simplicity.
- High Performance: Processes millions of events per second, about 4x to 10x faster than channels.
- Generic: Works with any type implementing the
Event
interface. - Asynchronous: Each subscriber runs in its own goroutine, ensuring non-blocking event handling.
Use When:
- ✅ Decoupling modules within a single Go process.
- ✅ Implementing lightweight pub/sub or event-driven patterns.
- ✅ Needing high-throughput, low-latency event dispatching.
- ✅ Preferring a simple, dependency-free solution.
Not For:
- ❌ Inter-process/service communication (use Kafka, NATS, etc.).
- ❌ Event persistence, durability, or advanced routing/filtering.
- ❌ Cross-language/platform scenarios.
- ❌ Event replay, dead-letter queues, or deduplication.
- ❌ Heavy subscribe/unsubscribe churn or massive dynamic subscriber counts.
This repository contains a simple, in-process event dispatcher to be used to decouple internal modules. It provides a generic way to define events, publish and subscribe to them.
// Various event types
const EventA = 0x01
// Event type for testing purposes
type myEvent struct{
Data string
}
// Type returns the event type
func (ev myEvent) Type() uint32 {
return EventA
}
For convenience, this package provides a default global dispatcher that can be used with On()
and Emit()
package-level functions.
// Subcribe to event A, and automatically unsubscribe at the end
defer event.On(func(e Event) {
println("(consumer)", e.Data)
})()
// Publish few events
event.Emit(newEventA("event 1"))
event.Emit(newEventA("event 2"))
event.Emit(newEventA("event 3"))
When publishing events, you can create a Dispatcher
which is then used as a target of generic event.Publish[T]()
and event.Subscribe[T]()
functions to publish and subscribe to various event types respectively.
bus := event.NewDispatcher()
// Subcribe to event A, and automatically unsubscribe at the end
defer event.Subscribe(bus, func(e Event) {
println("(consumer 1)", e.Data)
})()
// Subcribe to event A, and automatically unsubscribe at the end
defer event.Subscribe(bus, func(e Event) {
println("(consumer 2)", e.Data)
})()
// Publish few events
event.Publish(bus, newEventA("event 1"))
event.Publish(bus, newEventA("event 2"))
event.Publish(bus, newEventA("event 3"))
It should output something along these lines, where order is not guaranteed given that both subscribers are processing messages asyncrhonously.
(consumer 2) event 1
(consumer 2) event 2
(consumer 2) event 3
(consumer 1) event 1
(consumer 1) event 2
(consumer 1) event 3
Please note that the benchmarks are run on a 13th Gen Intel(R) Core(TM) i7-13700K CPU, and results may vary based on the machine and environment. This one demonstrates the publishing throughput of the event dispatcher, at different number of event types and subscribers.
name time/op ops/s allocs/op vs channels
-------------------- ------------ ---------
5728
--- ------------ ------------------
1x1 38.7 ns 25.9M 0 ✅ +4.2x
1x10 13.0 ns 77.1M 0 ✅ +12x
1x100 12.2 ns 81.7M 0 ✅ +7.7x
10x1 26.5 ns 37.7M 0 ✅ +6.3x
10x10 12.2 ns 82.3M 0 ✅ +7.8x
10x100 12.2 ns 82.0M 0 ✅ +6.6x
This project is licensed under the MIT License - see the LICENSE file for details.