interface IActorQuerySourceIdentifyHypermediaQpfArgs {
    beforeActors?: Actor<
        IActionQuerySourceIdentifyHypermedia,
        IActorQuerySourceIdentifyHypermediaTest,
        IActorQuerySourceIdentifyHypermediaOutput,
        undefined,
    >[];
    bus: Bus<
        Actor<
            IActionQuerySourceIdentifyHypermedia,
            IActorQuerySourceIdentifyHypermediaTest,
            IActorQuerySourceIdentifyHypermediaOutput,
            undefined,
        >,
        IActionQuerySourceIdentifyHypermedia,
        IActorQuerySourceIdentifyHypermediaTest,
        IActorQuerySourceIdentifyHypermediaOutput,
        undefined,
    >;
    busFailMessage?: string;
    graphUri?: string;
    mediatorDereferenceRdf: MediatorDereferenceRdf;
    mediatorMergeBindingsContext: MediatorMergeBindingsContext;
    mediatorMetadata: MediatorRdfMetadata;
    mediatorMetadataExtract: MediatorRdfMetadataExtract;
    name: string;
    objectUri: string;
    predicateUri: string;
    subjectUri: string;
}

Hierarchy (View Summary)

Implemented by

Properties

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

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

graphUri?: string

The URI that should be interpreted as graph URI

{http://www.w3.org/ns/sparql-service-description#graph}
mediatorDereferenceRdf: MediatorDereferenceRdf

The RDF dereference mediator

mediatorMergeBindingsContext: MediatorMergeBindingsContext

A mediator for creating binding context merge handlers

mediatorMetadata: MediatorRdfMetadata

The metadata mediator

mediatorMetadataExtract: MediatorRdfMetadataExtract

The metadata extract mediator

name: string

The name for this actor.

{<rdf:subject>}
objectUri: string

The URI that should be interpreted as object URI

{http://www.w3.org/1999/02/22-rdf-syntax-ns#object}
predicateUri: string

The URI that should be interpreted as predicate URI

{http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate}
subjectUri: string

The URI that should be interpreted as subject URI

{http://www.w3.org/1999/02/22-rdf-syntax-ns#subject}