blowater/event-bus.ts

20 lines
508 B
TypeScript
Raw Normal View History

2023-06-30 14:05:57 +00:00
import { chan, multi } from "https://raw.githubusercontent.com/BlowaterNostr/csp/master/csp.ts";
export class EventBus<T> implements EventEmitter<T> {
private readonly c = chan<T>();
private readonly caster = multi<T>(this.c);
emit = async (event: T) => {
2023-06-30 14:05:57 +00:00
await this.c.put(event);
};
2023-06-30 14:05:57 +00:00
onChange() {
return this.caster.copy();
}
}
export type EventEmitter<T> = {
emit: (event: T) => void;
};
export type emitFunc<T extends { type: string }> = (event: T) => void;