Add a short duration (0.05 seconds) coalescing queue to AppDelegate for the rest of the app to use.

This commit is contained in:
Brent Simmons 2018-02-17 15:14:48 -08:00
parent 0951b525f1
commit 9e860321bd
1 changed files with 2 additions and 1 deletions

View File

@ -26,6 +26,7 @@ class AppDelegate: NSObject, NSApplicationDelegate, NSUserInterfaceValidations,
var authorAvatarDownloader: AuthorAvatarDownloader!
var feedIconDownloader: FeedIconDownloader!
var appName: String!
var coalescingQueue = CoalescingQueue(name: "UI Queue", interval: 0.05)
@IBOutlet var debugMenuItem: NSMenuItem!
@IBOutlet var sortByOldestArticleOnTopMenuItem: NSMenuItem!