Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1012)

Unified Diff: ios/chrome/app/deferred_initialization_runner.h

Issue 2217083002: Add sequential dispatching for InitializationRunner (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comment Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ios/chrome/BUILD.gn ('k') | ios/chrome/app/deferred_initialization_runner.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/app/deferred_initialization_runner.h
diff --git a/ios/chrome/app/deferred_initialization_runner.h b/ios/chrome/app/deferred_initialization_runner.h
index e1bd59ce5e9006bb2fed80ffb1fd0202fc852000..fa6f41b4b7604422e690726c45221e19c4e3641f 100644
--- a/ios/chrome/app/deferred_initialization_runner.h
+++ b/ios/chrome/app/deferred_initialization_runner.h
@@ -18,6 +18,7 @@
// Returns singleton instance.
+ (DeferredInitializationRunner*)sharedInstance;
+// Deprecated.
// Schedules |block| to be run after |delaySeconds| on the current queue.
// This |block| is stored as |name| so code can force this initialization to
// be run synchronously if necessary. This method may be called more than
@@ -28,6 +29,16 @@
after:(NSTimeInterval)delaySeconds
block:(ProceduralBlock)block;
+// Adds |block| to a block queue containing all block not run. All blocks in the
+// queue are run sequentially with a small delay between each block.
+// If the queue is empty |block| is run after a small delay.
+// This |block| is stored as |name| so code can force this initialization to
+// be run synchronously if necessary. This method may be called more than
+// once with the same |name| parameter. Any block with the same |name|
+// cancels a previously scheduled block of the same |name| if the block has
+// not been run yet.
+- (void)enqueueBlockNamed:(NSString*)name block:(ProceduralBlock)block;
+
// Looks up a previously scheduled block of |name|. If block has not been
// run yet, run it synchronously now.
- (void)runBlockIfNecessary:(NSString*)name;
@@ -40,6 +51,12 @@
// Exposed for testing.
@property(nonatomic, readonly) NSUInteger numberOfBlocksRemaining;
+// Time interval between two blocks. Default value is 200ms.
+@property(nonatomic) NSTimeInterval delayBetweenBlocks;
+
+// Time interval before running the first block. Default value is 3s.
+@property(nonatomic) NSTimeInterval delayBeforeFirstBlocks;
pkl (ping after 24h if needed) 2016/08/19 23:48:20 Shouldn't this be singular, i.e. delayBeforeFirstB
gambard 2016/09/13 09:59:03 You are right. This makes little sense as public A
+
@end
#endif // IOS_CHROME_APP_DEFERRED_INITIALIZATION_RUNNER_H_
« no previous file with comments | « ios/chrome/BUILD.gn ('k') | ios/chrome/app/deferred_initialization_runner.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698