Data interface for the type of action.

interface IActionRdfMetadataExtract {
    context: IActionContext;
    headers?: Headers;
    metadata: Stream<Quad>;
    requestTime: number;
    url: string;
}

Hierarchy (view full)

Properties

The input context that is passed through by actors.

headers?: Headers

The headers of the page.

metadata: Stream<Quad>

The resulting quad data stream.

requestTime: number

The time it took to request the page in milliseconds. This is the time until the first byte arrives.

url: string

The page URL from which the quads were retrieved.