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
914428fa
Commit
914428fa
authored
Jul 23, 2021
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing override
parent
3dd9372c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
libcaf_net/caf/net/publisher_adapter.hpp
libcaf_net/caf/net/publisher_adapter.hpp
+6
-1
No files found.
libcaf_net/caf/net/publisher_adapter.hpp
View file @
914428fa
...
@@ -86,6 +86,11 @@ public:
...
@@ -86,6 +86,11 @@ public:
discard
();
discard
();
}
}
bool
disposed
()
const
noexcept
override
{
std
::
unique_lock
guard
{
mtx_
};
return
mgr_
==
nullptr
;
}
void
on_complete
()
{
void
on_complete
()
{
std
::
unique_lock
guard
{
mtx_
};
std
::
unique_lock
guard
{
mtx_
};
if
(
sink_
)
{
if
(
sink_
)
{
...
@@ -206,7 +211,7 @@ private:
...
@@ -206,7 +211,7 @@ private:
}
}
}
}
std
::
recursive_mutex
mtx_
;
mutable
std
::
recursive_mutex
mtx_
;
/// Allocated to max_in_flight_ * 2, but at most holds max_in_flight_ elements
/// Allocated to max_in_flight_ * 2, but at most holds max_in_flight_ elements
/// at any point in time. We dynamically shift elements into the first half of
/// at any point in time. We dynamically shift elements into the first half of
...
...
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