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
c4e5c987
Commit
c4e5c987
authored
Nov 21, 2020
by
Hauke Goldhammer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove paths from header comments
parent
eeccec20
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
24 additions
and
24 deletions
+24
-24
examples/broker/simple_broker.cpp
examples/broker/simple_broker.cpp
+2
-2
examples/qtsupport/qt_group_chat.cpp
examples/qtsupport/qt_group_chat.cpp
+3
-3
examples/remoting/distributed_calculator.cpp
examples/remoting/distributed_calculator.cpp
+12
-12
examples/remoting/group_chat.cpp
examples/remoting/group_chat.cpp
+3
-3
examples/remoting/group_server.cpp
examples/remoting/group_server.cpp
+4
-4
No files found.
examples/broker/simple_broker.cpp
View file @
c4e5c987
...
...
@@ -3,8 +3,8 @@
* a broker. Server and client exchange integers in a 'ping-pong protocol'. *
* *
* Minimal setup: *
* -
./build/example/simple_broker -s 4242
*
* -
./build/example/simple_broker -c localhost 4242
*
* -
simple_broker -s 4242
*
* -
simple_broker -c localhost 4242
*
\******************************************************************************/
// Manual refs: 42-47 (Actors.tex)
...
...
examples/qtsupport/qt_group_chat.cpp
View file @
c4e5c987
...
...
@@ -4,9 +4,9 @@
* terminal version in remote_actors/group_chat.cpp. *
* *
* Setup for a minimal chat between "alice" and "bob": *
* -
./build/examples/group_server -p 4242
*
* -
./build/examples/qt_group_chat -g remote:chatroom@localhost:4242 -n alice
*
* -
./build/examples/qt_group_chat -g remote:chatroom@localhost:4242 -n bob
*
* -
group_server -p 4242
*
* -
qt_group_chat -g remote:chatroom@localhost:4242 -n alice
*
* -
qt_group_chat -g remote:chatroom@localhost:4242 -n bob
*
\******************************************************************************/
#include <set>
...
...
examples/remoting/distributed_calculator.cpp
View file @
c4e5c987
/
/ This program is a distributed version of the math_actor example.
// Client and server use a stateless request/response protocol and the client
// is failure resilient by using a FIFO request queue.
// The client auto-reconnects and also allows for server reconfiguration.
//
// Run server at port 4242:
// - ./build/examples/distributed_calculator -s -p 4242
//
// Run client at the same host:
// - ./build/examples/distributed_calculator -c -p 4242
// Manual refs: 206-218 (ConfiguringActorSystems)
/
******************************************************************************\
* This program is a distributed version of the math_actor example. *
* Client and server use a stateless request/response protocol and the client *
* is failure resilient by using a FIFO request queue. *
* The client auto-reconnects and also allows for server reconfiguration. *
* *
* Run server at port 4242: *
* - distributed_calculator -s -p 4242 *
* *
* Run client at the same host: *
* - distributed_calculator -c -p 4242 *
\******************************************************************************/
#include <array>
#include <cassert>
...
...
examples/remoting/group_chat.cpp
View file @
c4e5c987
...
...
@@ -3,9 +3,9 @@
* based on group communication. *
* *
* Setup for a minimal chat between "alice" and "bob": *
* -
./build/example/group_chat -s -p 4242
*
* -
./build/example/group_chat -g remote:chatroom@localhost:4242 -n alice
*
* -
./build/example/group_chat -g remote:chatroom@localhost:4242 -n bob
*
* -
group_chat -s -p 4242
*
* -
group_chat -g remote:chatroom@localhost:4242 -n alice
*
* -
group_chat -g remote:chatroom@localhost:4242 -n bob
*
\******************************************************************************/
#include <cstdlib>
...
...
examples/remoting/group_server.cpp
View file @
c4e5c987
...
...
@@ -3,10 +3,10 @@
* communication server. *
* *
* Setup for a minimal chat between "alice" and "bob": *
* -
./build/bin/group_server -p 4242
*
* -
./build/bin/group_chat -g remote:chatroom@localhost:4242 -n alice
*
* -
./build/bin/group_chat -g remote:chatroom@localhost:4242 -n bob
*
\
******************************************************************************/
* -
group_server -p 4242
*
* -
group_chat -g remote:chatroom@localhost:4242 -n alice
*
* -
group_chat -g remote:chatroom@localhost:4242 -n bob
*
\******************************************************************************/
#include <string>
#include <cstdlib>
...
...
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