Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
actor-incubator
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
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-incubator
Commits
bcbb9f5e
Commit
bcbb9f5e
authored
Sep 25, 2019
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Switch to actor_proxy_impl in integration test
parent
984e2dc5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
libcaf_net/test/stream_application.cpp
libcaf_net/test/stream_application.cpp
+3
-2
No files found.
libcaf_net/test/stream_application.cpp
View file @
bcbb9f5e
...
@@ -28,6 +28,7 @@
...
@@ -28,6 +28,7 @@
#include "caf/byte.hpp"
#include "caf/byte.hpp"
#include "caf/forwarding_actor_proxy.hpp"
#include "caf/forwarding_actor_proxy.hpp"
#include "caf/net/actor_proxy_impl.hpp"
#include "caf/net/basp/connection_state.hpp"
#include "caf/net/basp/connection_state.hpp"
#include "caf/net/basp/constants.hpp"
#include "caf/net/basp/constants.hpp"
#include "caf/net/basp/ec.hpp"
#include "caf/net/basp/ec.hpp"
...
@@ -144,10 +145,10 @@ struct fixture : test_coordinator_fixture<>,
...
@@ -144,10 +145,10 @@ struct fixture : test_coordinator_fixture<>,
}
}
strong_actor_ptr
make_proxy
(
node_id
nid
,
actor_id
aid
)
override
{
strong_actor_ptr
make_proxy
(
node_id
nid
,
actor_id
aid
)
override
{
using
impl_type
=
forwarding_actor_proxy
;
using
impl_type
=
actor_proxy_impl
;
using
hdl_type
=
strong_actor_ptr
;
using
hdl_type
=
strong_actor_ptr
;
actor_config
cfg
;
actor_config
cfg
;
return
make_actor
<
impl_type
,
hdl_type
>
(
aid
,
nid
,
&
sys
,
cfg
,
self
);
return
make_actor
<
impl_type
,
hdl_type
>
(
aid
,
nid
,
&
sys
,
cfg
,
mgr
);
}
}
void
set_last_hop
(
node_id
*
)
override
{
void
set_last_hop
(
node_id
*
)
override
{
...
...
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