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
8a03aad0
Commit
8a03aad0
authored
Jul 22, 2014
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Coding style
parent
6d50d47f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
8 deletions
+3
-8
libcaf_core/caf/blocking_actor.hpp
libcaf_core/caf/blocking_actor.hpp
+3
-8
No files found.
libcaf_core/caf/blocking_actor.hpp
View file @
8a03aad0
...
@@ -41,12 +41,10 @@ namespace caf {
...
@@ -41,12 +41,10 @@ namespace caf {
* @extends local_actor
* @extends local_actor
*/
*/
class
blocking_actor
class
blocking_actor
:
public
extend
<
local_actor
,
blocking_actor
>::
with
<
:
public
extend
<
local_actor
,
blocking_actor
>::
mixin
::
mailbox_based
,
with
<
mixin
::
mailbox_based
,
mixin
::
sync_sender
<
blocking_response_handle_tag
>::
impl
>
{
mixin
::
sync_sender
<
blocking_response_handle_tag
>::
impl
>
{
public:
public:
class
functor_based
;
class
functor_based
;
/**************************************************************************
/**************************************************************************
...
@@ -260,11 +258,9 @@ class blocking_actor::functor_based : public blocking_actor {
...
@@ -260,11 +258,9 @@ class blocking_actor::functor_based : public blocking_actor {
}
}
protected:
protected:
void
act
()
override
;
void
act
()
override
;
private:
private:
void
create
(
blocking_actor
*
,
act_fun
);
void
create
(
blocking_actor
*
,
act_fun
);
template
<
class
Actor
,
typename
F
,
typename
T0
,
class
...
Ts
>
template
<
class
Actor
,
typename
F
,
typename
T0
,
class
...
Ts
>
...
@@ -287,7 +283,6 @@ class blocking_actor::functor_based : public blocking_actor {
...
@@ -287,7 +283,6 @@ class blocking_actor::functor_based : public blocking_actor {
}
}
act_fun
m_act
;
act_fun
m_act
;
};
};
}
// namespace caf
}
// namespace caf
...
...
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