aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/utils/MCOOperation.h
diff options
context:
space:
mode:
authorGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2014-01-02 21:50:41 -0800
committerGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2014-01-02 21:50:41 -0800
commita7b132b697def28c05760ebac61dd59e229b1df1 (patch)
treeb97cc985315db0cecf124e7c3336c41561183fcc /src/objc/utils/MCOOperation.h
parentdd182144e1d150db76fdb189785d827d1c3f7af0 (diff)
Added comment
Diffstat (limited to 'src/objc/utils/MCOOperation.h')
-rw-r--r--src/objc/utils/MCOOperation.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/objc/utils/MCOOperation.h b/src/objc/utils/MCOOperation.h
index 08e74d84..9d313186 100644
--- a/src/objc/utils/MCOOperation.h
+++ b/src/objc/utils/MCOOperation.h
@@ -17,7 +17,9 @@
/** Returns whether the operation is cancelled.*/
@property (readonly) BOOL isCancelled;
-/** The queue this operation dispatches the callback on. Defaults to the main queue.*/
+/** The queue this operation dispatches the callback on. Defaults to the main queue.
+ This property should be used only if there's performance issue creating or calling the callback
+ in the main thread. */
@property (nonatomic, assign) dispatch_queue_t callbackDispatchQueue;
/** This methods is called on the main thread when the asynchronous operation is finished.