Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
315115b4
Commit
315115b4
authored
Apr 16, 2018
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove dead code
parent
3ebb6c94
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
9 deletions
+0
-9
libcaf_core/caf/stream_manager.hpp
libcaf_core/caf/stream_manager.hpp
+0
-4
libcaf_core/src/stream_manager.cpp
libcaf_core/src/stream_manager.cpp
+0
-5
No files found.
libcaf_core/caf/stream_manager.hpp
View file @
315115b4
...
...
@@ -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
);
...
...
libcaf_core/src/stream_manager.cpp
View file @
315115b4
...
...
@@ -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
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment