@eagleoutice/flowr - v2.10.0
    Preparing search index...

    Similar to FileAnalysisResponseMessageJson but using a compact serialization format.

    interface FileAnalysisResponseMessageCompact {
        cfg?: string;
        format: "compact";
        id: string | undefined;
        results: string;
        type: "response-file-analysis";
    }

    Hierarchy (View Summary)

    Hierarchy-Diagram

    UML class diagram of FileAnalysisResponseMessageCompact
    Index

    Properties

    cfg?: string

    Only if the FileAnalysisRequestMessage contained a cfg: true this will contain the ControlFlowInformation of the file.

    format: "compact"
    id: string | undefined

    The id that links a request with its responses, it is up to the calling client to make sure it is unique. However, the client does not have to pass the id if it does not need to link the request with its response. The id is always undefined if the message is unprompted (e.g., with hello) or the id unknown.

    results: string

    See the PipelineExecutor and DEFAULT_DATAFLOW_PIPELINE for details on the results.

    type: "response-file-analysis"

    The at this time unknown type