bus

package module
v0.0.7 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 20, 2026 License: MIT Imports: 3 Imported by: 0

README

bus

Project Badges

is a minimal pub/sub event bus for the tinywasm ecosystem, designed for ultra-lightweight Go and WASM environments.

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Bus

type Bus interface {
	// Subscribe registers a handler for a topic.
	// Returns a Subscription handle to cancel the registration.
	Subscribe(topic string, handler func(msg binary.Message)) Subscription

	// Publish sends a message to all subscribers of a topic.
	Publish(topic string, msg binary.Message) error

	// Topics returns a sorted list of all active topics.
	Topics() []string

	// Close shuts down the bus and clears all registrations.
	Close() error
}

func New

func New() Bus

New creates a new in-memory bus.

type Subscription added in v0.0.2

type Subscription interface {
	Topic() string
	Cancel()
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL