interface IActorOptimizeQueryOperationSetSeedSourcesQuadpatternIrisArgs {
    beforeActors?: Actor<
        IActionOptimizeQueryOperation,
        IActorTest,
        IActorOptimizeQueryOperationOutput,
    >[];
    bus: Bus<
        Actor<
            IActionOptimizeQueryOperation,
            IActorTest,
            IActorOptimizeQueryOperationOutput,
        >,
        IActionOptimizeQueryOperation,
        IActorTest,
        IActorOptimizeQueryOperationOutput,
    >;
    busFailMessage?: string;
    extractGraphs: boolean;
    extractObjects: boolean;
    extractPredicates: boolean;
    extractSubjects: boolean;
    extractVocabIris: boolean;
    mediatorQuerySourceIdentify: MediatorQuerySourceIdentify;
    name: string;
}

Hierarchy

  • IActorArgs<
        IActionOptimizeQueryOperation,
        IActorTest,
        IActorOptimizeQueryOperationOutput,
    >
    • IActorOptimizeQueryOperationSetSeedSourcesQuadpatternIrisArgs

Properties

beforeActors?: Actor<
    IActionOptimizeQueryOperation,
    IActorTest,
    IActorOptimizeQueryOperationOutput,
>[]

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

bus: Bus<
    Actor<
        IActionOptimizeQueryOperation,
        IActorTest,
        IActorOptimizeQueryOperationOutput,
    >,
    IActionOptimizeQueryOperation,
    IActorTest,
    IActorOptimizeQueryOperationOutput,
>

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}"

extractGraphs: boolean

If IRIs should be extracted from graph positions.

{true}
extractObjects: boolean

If IRIs should be extracted from object positions.

{true}
extractPredicates: boolean

If IRIs should be extracted from predicate positions.

{false}
extractSubjects: boolean

If IRIs should be extracted from subject positions.

{true}
extractVocabIris: boolean

If object IRIs should be extracted if the predicate is rdf:type.

{false}
mediatorQuerySourceIdentify: MediatorQuerySourceIdentify

Mediator for identifying query sources.

name: string

The name for this actor.

{<rdf:subject>}