Flocc
    Preparing search index...

    Interface RunOptions

    Options for running an experiment.

    interface RunOptions {
        onProgress?: (progress: ExperimentProgress) => void;
        onRunComplete?: (result: RunResult) => void;
    }
    Index

    Properties

    onProgress?: (progress: ExperimentProgress) => void

    Callback invoked after each run completes.

    onRunComplete?: (result: RunResult) => void

    Callback invoked with results of each run (for streaming).