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
81c31050
Commit
81c31050
authored
Apr 20, 2022
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove experimental markers for remote spawning
parent
3bd185d4
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
6 deletions
+2
-6
libcaf_io/caf/io/middleman.hpp
libcaf_io/caf/io/middleman.hpp
+0
-4
manual/RemoteSpawn.rst
manual/RemoteSpawn.rst
+2
-2
No files found.
libcaf_io/caf/io/middleman.hpp
View file @
81c31050
...
...
@@ -62,7 +62,6 @@ public:
~
middleman
()
override
;
/// Tries to open a port for other CAF instances to connect to.
/// @experimental
expected
<
uint16_t
>
open
(
uint16_t
port
,
const
char
*
in
=
nullptr
,
bool
reuse
=
false
);
...
...
@@ -70,7 +69,6 @@ public:
expected
<
void
>
close
(
uint16_t
port
);
/// Tries to connect to given node.
/// @experimental
expected
<
node_id
>
connect
(
std
::
string
host
,
uint16_t
port
);
/// Tries to publish `whom` at `port` and returns either an
...
...
@@ -179,7 +177,6 @@ public:
/// or an error occurred.
strong_actor_ptr
remote_lookup
(
std
::
string
name
,
const
node_id
&
nid
);
/// @experimental
template
<
class
Handle
>
expected
<
Handle
>
remote_spawn
(
const
node_id
&
nid
,
std
::
string
name
,
message
args
,
...
...
@@ -195,7 +192,6 @@ public:
return
actor_cast
<
Handle
>
(
std
::
move
(
*
res
));
}
/// @experimental
template
<
class
Handle
,
class
Rep
,
class
Period
>
expected
<
Handle
>
remote_spawn
(
const
node_id
&
nid
,
std
::
string
name
,
message
args
,
...
...
manual/RemoteSpawn.rst
View file @
81c31050
.. _remote-spawn:
Remote Spawning of Actors
:sup:`experimental`
=========================
=====================
Remote Spawning of Actors
=========================
Remote spawning is an extension of the dynamic spawn using run-time type names
(see :ref:`add-custom-actor-type`). The following example assumes a typed actor
...
...
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