Package io.flutter.plugin.common
Class BinaryMessenger.TaskQueueOptions
- java.lang.Object
-
- io.flutter.plugin.common.BinaryMessenger.TaskQueueOptions
-
- Enclosing interface:
- BinaryMessenger
public static class BinaryMessenger.TaskQueueOptions extends Object
Options that control how a TaskQueue should operate and be created.
-
-
Constructor Summary
Constructors Constructor Description TaskQueueOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
getIsSerial()
BinaryMessenger.TaskQueueOptions
setIsSerial(boolean isSerial)
Setter for `isSerial` property.
-
-
-
Method Detail
-
getIsSerial
public boolean getIsSerial()
-
setIsSerial
public BinaryMessenger.TaskQueueOptions setIsSerial(boolean isSerial)
Setter for `isSerial` property.When this is true all tasks performed by the TaskQueue will be forced to happen serially (one completes before the other begins).
-
-