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

    Similar to FileAnalysisResponseMessage this only contains the results of the slice steps.

    interface SliceResponseMessage {
        id: string | undefined;
        results: Omit<
            PipelineOutput<typeof DEFAULT_SLICING_PIPELINE>,
            keyof PipelineOutput<typeof DEFAULT_DATAFLOW_PIPELINE>,
        >;
        type: "response-slice";
    }

    Hierarchy (View Summary)

    Hierarchy-Diagram

    UML class diagram of SliceResponseMessage
    Index

    Properties

    Properties

    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: Omit<
        PipelineOutput<typeof DEFAULT_SLICING_PIPELINE>,
        keyof PipelineOutput<typeof DEFAULT_DATAFLOW_PIPELINE>,
    >

    only contains the results of the slice steps to not repeat ourselves

    type: "response-slice"

    The at this time unknown type