Java.Util.Concurrent.Executors.DefaultThreadFactory Method
Returns a default thread factory used to create new threads.

Syntax

[Android.Runtime.Register("defaultThreadFactory", "()Ljava/util/concurrent/ThreadFactory;", "")]
public static IThreadFactory DefaultThreadFactory ()

Returns

Documentation for this section has not yet been entered.

Remarks

Returns a default thread factory used to create new threads. This factory creates all new threads used by an Executor in the same Java.Lang.ThreadGroup. Each new thread is created as a non-daemon thread with priority set to the smaller of Thread.NORM_PRIORITY and the maximum priority permitted in the thread group. New threads have names accessible via Java.Lang.Thread.Name of pool-N-thread-M, where N is the sequence number of this factory, and M is the sequence number of the thread created by this factory.

[Android Documentation]

Requirements

Namespace: Java.Util.Concurrent
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1