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

    Interface DetachInactiveOptions

    Options of the detachInactive plugin.

    interface DetachInactiveOptions {
        delayAfterDeactivated?: number;
        delayBeforeActivated?: number;
    }
    Index

    Properties

    delayAfterDeactivated?: number

    The minimum delay (in milliseconds) between executor deactivation and detachment. If the executor is reactivated during this delay, it won't be detached.

    By default, executor isn't detached if it was deactivated.

    delayBeforeActivated?: number

    The maximum delay (in milliseconds) allowed between executor creation and activation before it is detached.

    Use this when creating an executor prematurely and unsure if it will be used.

    By default, executor isn't detached if it wasn't activated.