MonobjcMonobjc Documented Class Library
AddOperationsWaitUntilFinished Method (ops, wait)
NamespacesMonobjc.FoundationNSOperationQueueAddOperationsWaitUntilFinished(NSArray, Boolean)

Adds the specified array of operations to the queue.

Original signature is '- (void)addOperations:(NSArray *)ops waitUntilFinished:(BOOL)wait'

Available in Mac OS X v10.6 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual void AddOperationsWaitUntilFinished(
	NSArray ops,
	bool wait
)
Public Overridable Sub AddOperationsWaitUntilFinished ( _
	ops As NSArray, _
	wait As Boolean _
)
public:
virtual void AddOperationsWaitUntilFinished(
	NSArray^ ops, 
	bool wait
)
Parameters
ops (NSArray)
The array of NSOperation objects that you want to add to the receiver.
wait (Boolean)
If YES, the current thread is blocked until all of the specified operations finish executing. If NO, the operations are added to the queue and control returns immediately to the caller.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later)

Assembly: Monobjc.Foundation (Module: Monobjc.Foundation)