Commit 65f2dc01 authored by Dominik Charousset's avatar Dominik Charousset

Remove obsolete includes, document API changes

Close #906.
parent 4e4c8732
...@@ -116,6 +116,9 @@ is based on [Keep a Changelog](https://keepachangelog.com). ...@@ -116,6 +116,9 @@ is based on [Keep a Changelog](https://keepachangelog.com).
- The enum `match_result` became obsolete. Individual message handlers can no - The enum `match_result` became obsolete. Individual message handlers can no
longer skip messages. Hence, message handlers can only succeed (match) or not. longer skip messages. Hence, message handlers can only succeed (match) or not.
Consequently, invoking a message handler or behavior now returns a boolean. Consequently, invoking a message handler or behavior now returns a boolean.
- All member functions of `scheduled_actor` for adding stream managers (such as
`make_source`) were removed in favor their free-function equivalent, e.g.,
`attach_stream_source`
### Fixed ### Fixed
......
...@@ -46,9 +46,6 @@ ...@@ -46,9 +46,6 @@
#include "caf/invoke_message_result.hpp" #include "caf/invoke_message_result.hpp"
#include "caf/local_actor.hpp" #include "caf/local_actor.hpp"
#include "caf/logger.hpp" #include "caf/logger.hpp"
#include "caf/make_sink_result.hpp"
#include "caf/make_source_result.hpp"
#include "caf/make_stage_result.hpp"
#include "caf/mixin/behavior_changer.hpp" #include "caf/mixin/behavior_changer.hpp"
#include "caf/mixin/requester.hpp" #include "caf/mixin/requester.hpp"
#include "caf/mixin/sender.hpp" #include "caf/mixin/sender.hpp"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment