天天看点

java threadpoolexecutor api_ThreadPoolExecutor.CallerRunsPolicy

ThreadPoolExecutor.CallerRunsPolicy Class

Definition

Assembly:Mono.Android.dll

A handler for rejected tasks that runs the rejected task

directly in the calling thread of the execute method,

unless the executor has been shut down, in which case the task

is discarded.

In this article

[Android.Runtime.Register("java/util/concurrent/ThreadPoolExecutor$CallerRunsPolicy", ApiSince=1, DoNotGenerateAcw=true)]

public class ThreadPoolExecutor.CallerRunsPolicy : Java.Lang.Object, IDisposable, Java.Util.Concurrent.IRejectedExecutionHandler

type ThreadPoolExecutor.CallerRunsPolicy = class

inherit Object

interface IRejectedExecutionHandler

interface IJavaObject

interface IDisposable

Inheritance

ThreadPoolExecutor.CallerRunsPolicy

Remarks

Portions of this page are modifications based on work created and shared by the

Constructors

A constructor used when creating managed representations of JNI objects; called by the runtime.

Properties

Returns the unique instance of Class that represents this

object's class.

(Inherited from Object)

The handle to the underlying Android instance.

(Inherited from Object)

This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

Methods

Creates and returns a copy of this Object.

(Inherited from Object)

(Inherited from Object)

Compares this instance with the specified object and indicates if they

are equal.

(Inherited from Object)

Returns an integer hash code for this object.

(Inherited from Object)

Invoked when the garbage collector has detected that this instance is no longer reachable.

(Inherited from Object)

Causes a thread which is waiting on this object's monitor (by means of

calling one of the wait() methods) to be woken up.

(Inherited from Object)

Causes all threads which are waiting on this object's monitor (by means

of calling one of the wait() methods) to be woken up.

(Inherited from Object)

Executes task r in the caller's thread, unless the executor

has been shut down, in which case the task is discarded.

Returns a string containing a concise, human-readable description of this

object.

(Inherited from Object)

Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object.

(Inherited from Object)

Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the

specified timeout expires.

(Inherited from Object)

Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the

specified timeout expires.

(Inherited from Object)

Explicit Interface Implementations

Extension Methods

Applies to