Flutter Engine
The Flutter Engine
Instance Methods | Properties | List of all members
FLTSerialTaskQueue Class Reference
Inheritance diagram for FLTSerialTaskQueue:
<FlutterTaskQueueDispatch> <FlutterTaskQueue>

Instance Methods

(instancetype) - init [implementation]
 
(void) - dispatch: [implementation]
 
(void) - dispatch:
 

Properties

dispatch_queue_t queue
 

Detailed Description

Definition at line 16 of file platform_message_handler_ios.mm.

Method Documentation

◆ dispatch:

- (void) dispatch: (dispatch_block_t)  block
implementation

Reimplemented from <FlutterTaskQueueDispatch>.

Definition at line 17 of file platform_message_handler_ios.mm.

29 :(dispatch_block_t)block {
30 dispatch_async(self.queue, block);
31}

◆ init

- (instancetype) init
implementation

Definition at line 17 of file platform_message_handler_ios.mm.

21 {
22 self = [super init];
23 if (self) {
24 _queue = dispatch_queue_create("FLTSerialTaskQueue", DISPATCH_QUEUE_SERIAL);
25 }
26 return self;
27}

Property Documentation

◆ queue

- (dispatch_queue_t) queue
readnonatomicassign

Definition at line 17 of file platform_message_handler_ios.mm.


The documentation for this class was generated from the following file: