An event dispatch mechanism for broadcasting of information to registered observers.
It is similar to NSNotificationCenter
, but with a few notable differences:
// Any type can be made Announceable
extension String : Announceable { }
let announcer = Announcer()
// Subscribe to observe values of an Announceable type
let subscription = announcer.when(String.self) { (aString, anAnnouncer) in
print("World says: \(aString)")
}
// Notify observers by announcing an Announceable value
announcer.announce("Drink Water!")
// Stop observing by removing the subscription object
announcer.remove(subscription: subscription)
// Alternatively, use an arbitrary object for managing subscriptions:
announcer.when(String.self, subscriber:self) { (aString, anAnnouncer) in
print("Received announcement: \(aString)")
}
// Unsubscribe when no longer interested
announcer.ubsubscribe(self)
Behind the scenes an Announcer
keeps a Registry
of all Subscription
s. Access to that registry is governed by a Read-Write lock, making operations thread-safe such that no changes to the registry will take place until all announcements have been processed, and no announcements will be processed while registry contents are being modified. Handling of announcements can happen concurrently. See Tests for details...
link |
Stars: 0 |
Last commit: 6 weeks ago |
Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics