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

    Interface ExecutorManagerOptions

    Options provided to the ExecutorManager constructor.

    interface ExecutorManagerOptions {
        devtools?: boolean;
        keySerializer?: (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
    
    keySerializer?: (key: any) => any

    Serializes executor keys.

    The serialized key form can be anything. If you want to use object identities as executor keys, provide an identity function as a serializer.

    Type declaration

      • (key: any): any
      • Parameters

        • key: any

          The key to serialize.

        Returns any

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

    Plugins that are applied to all executors.