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

Instance Methods

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

Properties

dispatch_queue_t queue
 

Detailed Description

Definition at line 14 of file platform_message_handler_ios.mm.

Method Documentation

◆ dealloc

- (void) dealloc
implementation

Definition at line 15 of file platform_message_handler_ios.mm.

27 {
28 dispatch_release(_queue);
29 [super dealloc];
30}

◆ dispatch:

- (void) dispatch: (dispatch_block_t)  block
implementation

Reimplemented from <FlutterTaskQueueDispatch>.

Definition at line 15 of file platform_message_handler_ios.mm.

32 :(dispatch_block_t)block {
33 dispatch_async(self.queue, block);
34}

◆ init

- (instancetype) init
implementation

Definition at line 15 of file platform_message_handler_ios.mm.

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

Property Documentation

◆ queue

- (dispatch_queue_t) queue
readwritenonatomicstrong

Definition at line 15 of file platform_message_handler_ios.mm.


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