Interface EnumerateLoadedClassesCallbacks

Hierarchy

  • EnumerateLoadedClassesCallbacks

Properties

Properties

onComplete: (() => void)

Type declaration

    • (): void
    • Called when all loaded classes have been enumerated.

      Returns void

onMatch: ((name: string, handle: NativePointer) => void)

Type declaration

    • (name: string, handle: NativePointer): void
    • Called with the name of each currently loaded class, and a JNI reference for its Java Class object.

      Pass the name to Java.use() to get a JavaScript wrapper. You may also Java.cast() the handle to java.lang.Class.

      Parameters

      Returns void

Generated using TypeDoc