-
initialise the queue
Declaration
Objective-C
- (id)init;
Swift
init!()
-
A thread-safe operation to remove the first item in the queue
Declaration
Objective-C
- (id)take;
Swift
func take() -> Any!
initialise the queue
Objective-C
- (id)init;
Swift
init!()
A thread-safe operation to remove the first item in the queue
Objective-C
- (id)take;
Swift
func take() -> Any!