WebViewRenderProcessClient


public abstract class WebViewRenderProcessClient
extends Object

java.lang.Object
   ↳ android.webkit.WebViewRenderProcessClient


Used to receive callbacks on WebView renderer events. WebViewRenderProcessClient instances may be set or retrieved via WebView.setWebViewRenderProcessClient(android.webkit.WebViewRenderProcessClient) and WebView.getWebViewRenderProcessClient(). Instances may be attached to multiple WebViews, and thus a single renderer event may cause a callback to be called multiple times with different WebView parameters.

Summary

Public constructors

WebViewRenderProcessClient()

Public methods

abstract void onRenderProcessResponsive(WebView view, WebViewRenderProcess renderer)

Called once when an unresponsive renderer currently associated with view becomes responsive.

abstract void onRenderProcessUnresponsive(WebView view, WebViewRenderProcess renderer)

Called when the renderer currently associated with view becomes unresponsive as a result of a long running blocking task such as the execution of JavaScript.

Inherited methods

Object clone()

Creates and returns a copy of this object.

boolean equals(Object obj)

Indicates whether some other object is "equal to" this one.

void finalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

final Class<?> getClass()

Returns the runtime class of this Object.

int hashCode()

Returns a hash code value for the object.

final void notify()

Wakes up a single thread that is waiting on this object's monitor.

final void notifyAll()

Wakes up all threads that are waiting on this object's monitor.

String toString()

Returns a string representation of the object.

final void wait(long timeoutMillis, int nanos)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait(long timeoutMillis)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait()

Causes the current thread to wait until it is awakened, typically by being notified or interrupted.

Public constructors

WebViewRenderProcessClient

public WebViewRenderProcessClient ()

Public methods

onRenderProcessResponsive

Added in API level 29
public abstract void onRenderProcessResponsive (WebView view, 
                WebViewRenderProcess renderer)

Called once when an unresponsive renderer currently associated with view becomes responsive.

After a WebView renderer becomes unresponsive, which is notified to the application by WebViewRenderProcessClient.onRenderProcessUnresponsive, it is possible for the blocking renderer task to complete, returning the renderer to a responsive state. In that case, this method is called once to indicate responsiveness.

No action is taken by WebView as a result of this method call.

Parameters
view WebView: The WebView for which responsiveness was detected. This value cannot be null.

renderer WebViewRenderProcess: The WebViewRenderProcess that has become responsive, or null if WebView is running in single process mode.

onRenderProcessUnresponsive

Added in API level 29
public abstract void onRenderProcessUnresponsive (WebView view, 
                WebViewRenderProcess renderer)

Called when the renderer currently associated with view becomes unresponsive as a result of a long running blocking task such as the execution of JavaScript.

If a WebView fails to process an input event, or successfully navigate to a new URL within a reasonable time frame, the renderer is considered to be unresponsive, and this callback will be called.

This callback will continue to be called at regular intervals as long as the renderer remains unresponsive. If the renderer becomes responsive again, onRenderProcessResponsive(WebView, WebViewRenderProcess) will be called once, and this method will not subsequently be called unless another period of unresponsiveness is detected.

The minimum interval between successive calls to onRenderProcessUnresponsive is 5 seconds.

No action is taken by WebView as a result of this method call. Applications may choose to terminate the associated renderer via the object that is passed to this callback, if in multiprocess mode, however this must be accompanied by correctly handling WebViewClient.onRenderProcessGone for this WebView, and all other WebViews associated with the same renderer. Failure to do so will result in application termination.

Parameters
view WebView: The WebView for which unresponsiveness was detected. This value cannot be null.

renderer WebViewRenderProcess: The WebViewRenderProcess that has become unresponsive, or null if WebView is running in single process mode.