【C++】郭老二博文之:C++目录
1、Notifications和Events的区别
1)通知Notifications:如果观察者不知道或不关心事件的来源,则使用通知Notifications。
Poco::NotificationCenter或Poco::NotificationQueue位于源source和目标target之间,并将它们解耦。
通知Notifications可以跨线程发送。
2)事件Events:如果观察者确实关心事件的源source,或者希望仅从特定源source接收事件,则使用事件Events。
事件还支持异步通知和一些Notifications不支持的特性。
3)Notifications和Events的异同
4)Notifications通知的调度流程
5)Events事件的调度流程
未完,待续……
1、Notifications 通知
1.1
2、Events 事件
2.1
。