European Parliament MCP Server API - v1.3.10
    Preparing search index...

    Interface LinkedAbortController

    interface LinkedAbortController {
        cleanup: () => void;
        controller: AbortController;
    }
    Index

    Properties

    Properties

    cleanup: () => void

    Idempotent cleanup function that removes the external signal's abort listener. MUST be called in a finally block after the fetch settles to avoid retaining listeners on long-lived external signals.

    controller: AbortController

    The internal AbortController whose signal should be passed to fetch. Aborts when either the external signal aborts or the caller invokes controller.abort() directly (e.g. on timeout).