interface IActorContextPreprocessQuerySourceIdentifyArgs {
    beforeActors?: Actor<
        IActionContextPreprocess,
        IActorTest,
        IActorContextPreprocessOutput,
        undefined,
    >[];
    bus: Bus<
        Actor<
            IActionContextPreprocess,
            IActorTest,
            IActorContextPreprocessOutput,
            undefined,
        >,
        IActionContextPreprocess,
        IActorTest,
        IActorContextPreprocessOutput,
        undefined,
    >;
    busFailMessage?: string;
    cacheSize: number;
    httpInvalidator: ActorHttpInvalidateListenable;
    mediatorContextPreprocess: MediatorContextPreprocess;
    mediatorQuerySourceIdentify: MediatorQuerySourceIdentify;
    name: string;
}

Hierarchy (View Summary)

Properties

beforeActors?: Actor<
    IActionContextPreprocess,
    IActorTest,
    IActorContextPreprocessOutput,
    undefined,
>[]

Actor that must be registered in the bus before this actor.

bus: Bus<
    Actor<
        IActionContextPreprocess,
        IActorTest,
        IActorContextPreprocessOutput,
        undefined,
    >,
    IActionContextPreprocess,
    IActorTest,
    IActorContextPreprocessOutput,
    undefined,
>

The bus this actor subscribes to.

busFailMessage?: string

The message that will be configured in the bus for reporting failures.

This message may be a template string that contains references to the executed action. For example, the following templated string is allowed: "RDF dereferencing failed: no actors could handle ${action.handle.mediaType}"

cacheSize: number

The maximum number of entries in the LRU cache, set to 0 to disable.

{100}

An actor that listens to HTTP invalidation events

{<default_invalidator> a <npmd:@comunica/bus-http-invalidate/^4.0.0/components/ActorHttpInvalidateListenable.jsonld#ActorHttpInvalidateListenable>}
mediatorContextPreprocess: MediatorContextPreprocess

The context processing combinator

mediatorQuerySourceIdentify: MediatorQuerySourceIdentify

Mediator for identifying query sources.

name: string

The name for this actor.

{<rdf:subject>}