to top
Android APIs
public static class

RenderScript.RSErrorHandler

extends Object
implements Runnable
java.lang.Object
   ↳ android.renderscript.RenderScript.RSErrorHandler

Class Overview

The runtime error handler base class. An application should derive from this class if it wishes to install an error handler. When errors occur at runtime, the fields in this class will be filled, and the run method will be called.

Summary

Fields
protected String mErrorMessage
protected int mErrorNum
Public Constructors
RenderScript.RSErrorHandler()
Public Methods
void run()
Starts executing the active part of the class' code.
[Expand]
Inherited Methods
From class java.lang.Object
From interface java.lang.Runnable

Fields

protected String mErrorMessage

Added in API level 11

protected int mErrorNum

Added in API level 11

Public Constructors

public RenderScript.RSErrorHandler ()

Added in API level 11

Public Methods

public void run ()

Added in API level 11

Starts executing the active part of the class' code. This method is called when a thread is started that has been created with a class which implements Runnable.