Contents

isConcurrent

A Boolean value indicating whether the operation executes its task asynchronously.

Declaration

var isConcurrent: Bool { get }

Discussion

Use the isAsynchronous property instead.

The value of this property is true for operations that run asynchronously with respect to the current thread or false for operations that run synchronously on the current thread. The default value of this property is false.

In macOS 10.6 and later, operation queues ignore the value in this property and always start operations on a separate thread.

See Also

Getting the Operation Status