@comunica/mediator-combine-pipeline
TypeScript icon, indicating that this package has built-in type declarations

3.0.3 • Public • Published

Comunica Mediator Sequential

npm version

A comunica mediator that goes over all actors in sequence and forwards I/O. This requires the action input and the actor output to be of the same type.

This module is part of the Comunica framework, and should only be used by developers that want to build their own query engine.

Click here if you just want to query with Comunica.

Install

$ yarn add @comunica/mediator-sequential

Configure

After installing, this mediator can be instantiated as follows:

{
  "@context": [
    ...
    "https://linkedsoftwaredependencies.org/bundles/npm/@comunica/mediator-combine-pipeline/^3.0.0/components/context.jsonld"
  ],
  "actors": [
    ...
    {
      "@type": "SomeActor",
      "someMediator": {
        "@id": "#mediatorOptimizeQueryOperation",
        "@type": "MediatorCombinePipeline",
        "bus": { "@id": "ActorOptimizeQueryOperation:_default_bus" }
      }
    }
  ]
}

Config Parameters

  • bus: Identifier of the bus to mediate over.
  • filterErrors: Optional flag to indicate if actors that throw test errors should be filtered out of the pipeline, defaults to false.
  • field: Optional field to use for ordering (if the ordering strategy is chosen). Leave undefined if the test output is a number rather than an object.
  • order: Optional strategy of ordering the pipeline (increasing or decreasing).
    • For choosing to leave the order of the pipeline unchanged, leave this undefined.
    • For choosing to order by increasing values: 'increasing'.
    • For choosing to order by decreasing values: 'decreasing'.

Dependencies (2)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i @comunica/mediator-combine-pipeline

    Weekly Downloads

    5,117

    Version

    3.0.3

    License

    MIT

    Unpacked Size

    31.2 kB

    Total Files

    12

    Last publish

    Collaborators

    • jeswr
    • joachimvh
    • rubensworks
    • rubenverborgh
    • dexagod