AsyncTask.SerialExecutor Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
An Executor
that executes tasks one at a time in serial
order.
[Android.Runtime.Register("SERIAL_EXECUTOR")]
public static Java.Util.Concurrent.IExecutor? SerialExecutor { get; }
[<Android.Runtime.Register("SERIAL_EXECUTOR")>]
static member SerialExecutor : Java.Util.Concurrent.IExecutor
Property Value
- Attributes
Remarks
An Executor
that executes tasks one at a time in serial order. This serialization is global to a particular process.
This member is deprecated. Globally serializing tasks results in excessive queuing for unrelated operations.
Java documentation for android.os.AsyncTask.SERIAL_EXECUTOR
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.