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
9917b4dd
Commit
9917b4dd
authored
Jun 03, 2014
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove `self` from docu for class-based actors
parent
4517bafb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
manual/GroupCommunication.tex
manual/GroupCommunication.tex
+1
-1
manual/ReceivingMessages.tex
manual/ReceivingMessages.tex
+1
-1
No files found.
manual/GroupCommunication.tex
View file @
9917b4dd
...
...
@@ -45,7 +45,7 @@ It is worth mentioning that user-implemented groups can be build on top of IP mu
\label
{
Sec::Group::Spawn
}
The function
\lstinline
^
spawn
_
in
_
group
^
can be used to create actors as members of a group.
The function causes the newly created actors to call
\lstinline
^
self->
join(...)
^
immediately and before
\lstinline
^
spawn
_
in
_
group
^
returns.
The function causes the newly created actors to call
\lstinline
^
join(...)
^
immediately and before
\lstinline
^
spawn
_
in
_
group
^
returns.
The usage of
\lstinline
^
spawn
_
in
_
group
^
is equal to
\lstinline
^
spawn
^
, except for an additional group argument.
The group handle is always the first argument, as shown in the examples below.
...
...
manual/ReceivingMessages.tex
View file @
9917b4dd
...
...
@@ -29,7 +29,7 @@ This base class simply returns \lstinline^init_state^ (defined in the subclass)
struct printer : sb
_
actor<printer>
{
behavior init
_
state
{
others() >> []
{
cout << to
_
string(
self->
last
_
received()) << endl;
cout << to
_
string(last
_
received()) << endl;
}
}
;
}
;
...
...
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