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
84fd1c84
Commit
84fd1c84
authored
Nov 18, 2019
by
Andris Mednis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typos in libcaf_io
parent
d0ff9a53
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
libcaf_io/caf/io/basp/all.hpp
libcaf_io/caf/io/basp/all.hpp
+3
-3
libcaf_io/caf/io/basp/worker.hpp
libcaf_io/caf/io/basp/worker.hpp
+1
-1
libcaf_io/caf/io/middleman.hpp
libcaf_io/caf/io/middleman.hpp
+1
-1
libcaf_io/caf/io/network/datagram_handler.hpp
libcaf_io/caf/io/network/datagram_handler.hpp
+1
-1
No files found.
libcaf_io/caf/io/basp/all.hpp
View file @
84fd1c84
...
@@ -27,11 +27,11 @@
...
@@ -27,11 +27,11 @@
#include "caf/io/basp/routing_table.hpp"
#include "caf/io/basp/routing_table.hpp"
#include "caf/io/basp/version.hpp"
#include "caf/io/basp/version.hpp"
/// @defgroup BASP Binary Actor Sytem Protocol
/// @defgroup BASP Binary Actor Sy
s
tem Protocol
///
///
/// # Protocol Overview
/// # Protocol Overview
///
///
/// The "Binary Actor Sytem Protocol" (BASP) is **not** a network protocol.
/// The "Binary Actor Sy
s
tem Protocol" (BASP) is **not** a network protocol.
/// It is a specification for the "Remote Method Invocation" (RMI) interface
/// It is a specification for the "Remote Method Invocation" (RMI) interface
/// used by distributed instances of CAF. The purpose of BASP is unify the
/// used by distributed instances of CAF. The purpose of BASP is unify the
/// structure of RMI calls in order to simplify processing and implementation.
/// structure of RMI calls in order to simplify processing and implementation.
...
@@ -44,7 +44,7 @@
...
@@ -44,7 +44,7 @@
///
///
/// 
/// 
///
///
/// The figure above illustrates the phy
is
cal as well as the logical view
/// The figure above illustrates the phy
si
cal as well as the logical view
/// of a distributed CAF application. Note that the actors used for the
/// of a distributed CAF application. Note that the actors used for the
/// BASP communication ("BASP Brokers") are not part of the logical system
/// BASP communication ("BASP Brokers") are not part of the logical system
/// view and are in fact not visible to other actors. A BASP Broker creates
/// view and are in fact not visible to other actors. A BASP Broker creates
...
...
libcaf_io/caf/io/basp/worker.hpp
View file @
84fd1c84
...
@@ -54,7 +54,7 @@ public:
...
@@ -54,7 +54,7 @@ public:
// -- constructors, destructors, and assignment operators --------------------
// -- constructors, destructors, and assignment operators --------------------
/// Only the ::worker_hub has access to the construtor.
/// Only the ::worker_hub has access to the constru
c
tor.
worker
(
hub_type
&
hub
,
message_queue
&
queue
,
proxy_registry
&
proxies
);
worker
(
hub_type
&
hub
,
message_queue
&
queue
,
proxy_registry
&
proxies
);
~
worker
()
override
;
~
worker
()
override
;
...
...
libcaf_io/caf/io/middleman.hpp
View file @
84fd1c84
...
@@ -327,7 +327,7 @@ private:
...
@@ -327,7 +327,7 @@ private:
std
::
thread
thread_
;
std
::
thread
thread_
;
// keeps track of "singleton-like" brokers
// keeps track of "singleton-like" brokers
std
::
map
<
atom_value
,
actor
>
named_brokers_
;
std
::
map
<
atom_value
,
actor
>
named_brokers_
;
// actor offering asyncronous IO by managing this singleton instance
// actor offering async
h
ronous IO by managing this singleton instance
middleman_actor
manager_
;
middleman_actor
manager_
;
};
};
...
...
libcaf_io/caf/io/network/datagram_handler.hpp
View file @
84fd1c84
...
@@ -59,7 +59,7 @@ public:
...
@@ -59,7 +59,7 @@ public:
/// @warning Not thread safe.
/// @warning Not thread safe.
void
write
(
datagram_handle
hdl
,
const
void
*
buf
,
size_t
num_bytes
);
void
write
(
datagram_handle
hdl
,
const
void
*
buf
,
size_t
num_bytes
);
/// Returns the write buffer of this enpoint.
/// Returns the write buffer of this en
d
point.
/// @warning Must not be modified outside the IO multiplexers event loop
/// @warning Must not be modified outside the IO multiplexers event loop
/// once the stream has been started.
/// once the stream has been started.
write_buffer_type
&
wr_buf
(
datagram_handle
hdl
)
{
write_buffer_type
&
wr_buf
(
datagram_handle
hdl
)
{
...
...
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