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
e78126f9
Commit
e78126f9
authored
Jul 28, 2015
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix documentation of `set_middleman`
parent
d718796c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
libcaf_io/caf/io/set_middleman.hpp
libcaf_io/caf/io/set_middleman.hpp
+2
-2
No files found.
libcaf_io/caf/io/set_middleman.hpp
View file @
e78126f9
...
@@ -28,13 +28,13 @@ namespace io {
...
@@ -28,13 +28,13 @@ namespace io {
/// Sets a user-defined middleman using given network backend.
/// Sets a user-defined middleman using given network backend.
/// @note This function must be used before actor is spawned. Dynamically
/// @note This function must be used before actor is spawned. Dynamically
/// changing the middleman at runtime is not supported.
/// changing the middleman at runtime is not supported.
/// @throws std::logic_error if a
scheduler
is already defined
/// @throws std::logic_error if a
middleman
is already defined
void
set_middleman
(
network
::
multiplexer
*
ptr
);
void
set_middleman
(
network
::
multiplexer
*
ptr
);
/// Sets a user-defined middleman using given network backend.
/// Sets a user-defined middleman using given network backend.
/// @note This function must be used before actor is spawned. Dynamically
/// @note This function must be used before actor is spawned. Dynamically
/// changing the middleman at runtime is not supported.
/// changing the middleman at runtime is not supported.
/// @throws std::logic_error if a
scheduler
is already defined
/// @throws std::logic_error if a
middleman
is already defined
template
<
class
Multiplexer
>
template
<
class
Multiplexer
>
void
set_middleman
()
{
void
set_middleman
()
{
set_middleman
(
new
Multiplexer
);
set_middleman
(
new
Multiplexer
);
...
...
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