Interface IMediatorCombineUnionArgs<A, I, T, O, TS>

interface IMediatorCombineUnionArgs<
    A extends Actor<I, T, O, TS>,
    I extends IAction,
    T extends IActorTest,
    O extends IActorOutput,
    TS = undefined,
> {
    bus: Bus<A, I, T, O, TS>;
    field: string;
    filterFailures?: boolean;
    name: string;
}

Type Parameters

Hierarchy (View Summary)

Implemented by

Properties

bus: Bus<A, I, T, O, TS>

The bus this mediator will mediate over.

field: string

The field name of the test result field over which must be mediated.

filterFailures?: boolean

If actors that throw test errors should be ignored

name: string

The name for this mediator.

{<rdf:subject>}