waitUntilAllOperationsAreFinished()
Blocks the current thread until all the receiver’s queued and executing operations finish executing.
Declaration
func waitUntilAllOperationsAreFinished()Discussion
When called, this method blocks the current thread and waits for the receiver’s current and queued operations to finish executing. While the current thread is blocked, the receiver continues to launch already queued operations and monitor those that are executing. During this time, the current thread cannot add operations to the queue, but other threads may. Once all of the pending operations are finished, this method returns.
If there are no operations in the queue, this method returns immediately.