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
6884f0c2
Commit
6884f0c2
authored
Feb 17, 2015
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix documentation of `remote_actor`
parent
412b8ac9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
libcaf_io/caf/io/remote_actor.hpp
libcaf_io/caf/io/remote_actor.hpp
+4
-2
No files found.
libcaf_io/caf/io/remote_actor.hpp
View file @
6884f0c2
...
@@ -54,7 +54,8 @@ struct typed_remote_actor_helper<List<Ts...>> {
...
@@ -54,7 +54,8 @@ struct typed_remote_actor_helper<List<Ts...>> {
* @param port TCP port.
* @param port TCP port.
* @returns An {@link actor_ptr} to the proxy instance
* @returns An {@link actor_ptr} to the proxy instance
* representing a remote actor.
* representing a remote actor.
* @throws std::invalid_argument Thrown when connecting to a typed actor.
* @throws network_error Thrown on connection error or
* when connecting to a typed actor.
*/
*/
inline
actor
remote_actor
(
const
std
::
string
&
host
,
uint16_t
port
)
{
inline
actor
remote_actor
(
const
std
::
string
&
host
,
uint16_t
port
)
{
auto
res
=
remote_actor_impl
(
std
::
set
<
std
::
string
>
{},
host
,
port
);
auto
res
=
remote_actor_impl
(
std
::
set
<
std
::
string
>
{},
host
,
port
);
...
@@ -67,7 +68,8 @@ inline actor remote_actor(const std::string& host, uint16_t port) {
...
@@ -67,7 +68,8 @@ inline actor remote_actor(const std::string& host, uint16_t port) {
* @param port TCP port.
* @param port TCP port.
* @returns An {@link actor_ptr} to the proxy instance
* @returns An {@link actor_ptr} to the proxy instance
* representing a typed remote actor.
* representing a typed remote actor.
* @throws std::invalid_argument Thrown when connecting to a typed actor.
* @throws network_error Thrown on connection error or when connecting
* to an untyped otherwise unexpected actor.
*/
*/
template
<
class
List
>
template
<
class
List
>
typename
typed_remote_actor_helper
<
List
>::
return_type
typename
typed_remote_actor_helper
<
List
>::
return_type
...
...
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