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
b19ea13a
Commit
b19ea13a
authored
Apr 28, 2012
by
neverlord
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feature mockup
parent
cacea1bc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
0 deletions
+35
-0
unit_testing/test__spawn.cpp
unit_testing/test__spawn.cpp
+35
-0
No files found.
unit_testing/test__spawn.cpp
View file @
b19ea13a
...
@@ -448,4 +448,39 @@ size_t test__spawn()
...
@@ -448,4 +448,39 @@ size_t test__spawn()
// verify pong messages
// verify pong messages
CPPA_CHECK_EQUAL
(
10
,
pongs
());
CPPA_CHECK_EQUAL
(
10
,
pongs
());
return
CPPA_TEST_RESULT
;
return
CPPA_TEST_RESULT
;
/****** TODO
int add_fun(int, int);
int sub_fun(int, int);
...
class math
{
public:
int add_fun(int, int);
int sub_fun(int, int);
};
...
auto factory1 = actor_prototype
(
on<atom("add"), int, int>().reply_with(atom("result"), add_fun),
on<atom("sub"), int, int>().reply_with(atom("result"), add_fun)
);
auto a1 = factory1.spawn();
...
auto factory2 = actor_facade<math>
(
on<atom("add"), int, int>().reply_with(atom("result"), &math::add_fun), <-- possible?
on<atom("sub"), int, int>().reply_with(atom("result"), &math::sub_fun)
);
auto a2 = factory2.spawn();
*/
}
}
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