Frida Docs Unified
    Preparing search index...

    Interface ChooseCallbacks<T>

    interface ChooseCallbacks<T extends Members<T> = {}> {
        onComplete: () => void;
        onMatch: (instance: Wrapper<T>) => void | "stop";
    }

    Type Parameters

    Index

    Properties

    Properties

    onComplete: () => void

    Called when all instances have been enumerated.

    onMatch: (instance: Wrapper<T>) => void | "stop"

    Called with each live instance found with a ready-to-use instance just as if you would have called Java.cast() with a raw handle to this particular instance.

    May return EnumerateAction.Stop to stop the enumeration early.