This project was originally forked from https://github.com/Geenz/CPP-NotificationCenter which is not maintained anymore.
A C++ API inspired by Cocoa's NSNotificationCenter API.
Using notifly
is simple. In order to use the default center, simply use the static
method notifly::default_notifly()
like so:
notifly::default_notifly().add_observer(1, [=](){printf("Hello world!\n");});
Notifly is intended to be included directly in your projects, as such no library (dynamic or static) is provided.
Notifly requires a compiler that supports the following C++17 APIs:
std::mutex
std::function
std::shared_ptr
std::any
std::unordered_map
Adding observers is a simple process. Simply invoke the method notifly::add_observer
passing in a function pointer
and integer ID for the notification that this observer should respond to.
A couple of examples of how to do this are:
#define MY_NOTIFICATION_ID 1
notifly::default_notifly().add_observer(MY_NOTIFICATION_ID, [=]{printf("Hello world!\n");});
notifly::default_notifly().add_observer(MY_NOTIFICATION_ID, helloWorldFunc);
Posting notifications can be done with notifly::post_notification
, like so:
notifly::default_notifly().post_notification(MY_NOTIFICATION_ID);
Using the third parameter a_async
, you can set the function to be called inside a different thread or in same of the caller. It
is set to false
by default.
Notifications can be posted and modified by using the unique identifier returned when add observer is called:
auto observerId = notifly::default_notifly().add_observer([Notification ID], [=]{printf("I'm being posted by an iterator!\n");});
notifly::default_notifly().remove_observer(observerId);
You can also use more than one instance of NotificationCenter. Although a default notification center is provided, you can also create your own notification centers for whatever purpose you may require them for.
The included example program shows you the basics of how to use NotificationCenter. It's not intended to be sophisticated by any means, just to showcase the basics.
I don't expect this to work flawlessly for all applications, and thread safety isn't something that I've tested particularly well. If you find issues, feel free to file a bug. If you wish to contribute, simply fork this repository and make a pull request.
Notifly is licensed under the MIT license.