Commit 315115b4 authored by Dominik Charousset's avatar Dominik Charousset

Remove dead code

parent 3ebb6c94
......@@ -262,10 +262,6 @@ protected:
/// all listeners. The default implementation returns an empty message.
virtual message make_final_result();
/// Called to handle incoming data. The default implementation logs an error
/// (sinks are expected to override this member function).
virtual error process_batch(message& msg);
/// Called when `in().closed()` changes to `true`. The default
/// implementation does nothing.
virtual void input_closed(error reason);
......
......@@ -304,11 +304,6 @@ message stream_manager::make_final_result() {
return none;
}
error stream_manager::process_batch(message&) {
CAF_LOG_ERROR("stream_manager::process_batch called");
return sec::invalid_stream_state;
}
void stream_manager::output_closed(error) {
// nop
}
......
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