Module @comunica/actor-http-retry - v4.0.2

Comunica Retry HTTP Actor

npm version

An HTTP actor that performs simple request retries.

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.

$ yarn add @comunica/actor-http-retry

After installing, this package can be added to your engine's configuration as follows:

{
"@context": [
"https://linkedsoftwaredependencies.org/bundles/npm/@comunica/actor-http-retry/^3.0.0/components/context.jsonld"
],
"actors": [
{
"@id": "urn:comunica:default:http/actors#retry",
"@type": "ActorHttpRetry"
}
]
}
  • KeysHttp.httpRetryCount: The number of retries, added on top of the initial attempt.
  • KeysHttp.httpRetryDelayFallback: The fallback retry delay in milliseconds, if a server does not send a Retry-After header.
  • KeysHttp.httpRetryDelayLimit: The optional upper limit of the retry delay in milliseconds. If a server requests a delay larger than this, the engine will consider it unavailable.

Classes

ActorHttpRetry

Interfaces

IActorHttpQueueArgs