Reading List

NotificationQueue and Custom Dispatch Source Coalescing from Michael Tsai RSS feed.

NotificationQueue and Custom Dispatch Source Coalescing

I have some old code that uses NSNotificationQueue to coalesce notifications. I think this is an underappreciated class. (Even in the old days, I saw a lot more talk about +cancelPreviousPerformRequestsWithTarget:selector:object:.) My newer code uses more threads, but notification queues are not thread-safe. You can create additional queues beyond the default and have each one […]