vapor-chamber API reference - v1.16.0
    Preparing search index...

    Type Alias BusObservation

    The shape an observable produces — matches the listener signature of bus.on(pattern, (cmd, result) => ...) packed into a single value so RxJS-shaped operators can .pipe(filter(...)) etc.

    type BusObservation = {
        cmd: Command;
        result: CommandResult;
    }
    Index
    cmd: Command