Frida Docs Unified
    Preparing search index...

    Interface ProxyEventCallbacks<D, T, S>

    interface ProxyEventCallbacks<D, T, S> {
        dealloc?(this: UserMethodInvocation<D, T, S>): void;
        forward?(this: UserMethodInvocation<D, T, S>, name: string): void;
    }

    Type Parameters

    • D
    • T
    • S
    Index

    Methods

    • Gets notified about the method name that we’re about to forward a call to.

      This might be where you’d start out with a temporary callback that just logs the names to help you decide which methods to override.

      Parameters

      Returns void