React Executor - v0.0.26
    Preparing search index...

    Interface ExecutorManagerOptions

    Options provided to the ExecutorManager constructor.

    interface ExecutorManagerOptions {
        devtools?: boolean;
        keyIdGenerator?: (key: any) => any;
        plugins?: (undefined | null | ExecutorPlugin)[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    devtools?: boolean

    If true then executors are registered in the devtools extension.

    true
    
    keyIdGenerator?: (key: any) => any

    Returns the unique comparable ID for the executor key.

    The key ID can be anything. If you want to use object identities as executor keys, provide an identity function as an ID generator.

    Type declaration

      • (key: any): any
      • Parameters

        • key: any

          The key to get unique ID for.

        Returns any

    JSON.stringify
    
    plugins?: (undefined | null | ExecutorPlugin)[]

    Plugins that are applied to all executors.