Commit 01aef170 authored by Dominik Charousset's avatar Dominik Charousset

Update example INI file and manual refs

parent 53feac8d
......@@ -22,6 +22,8 @@ profiling-output-file="/dev/null"
enable-automatic-connections=false
; accepted alternative: 'asio' (only when compiling CAF with ASIO)
network-backend='default'
; sets the maximum number of consecutive I/O reads per broker
max-consecutive-reads=50
; heartbeat message interval in ms (0 disables heartbeating)
heartbeat-interval=0
......
/******************************************************************************\
* 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/bin/distributed_math_actor -s -p 4242 *
* *
* Run client at the same host: *
* - ./build/bin/distributed_math_actor -c -p 4242 *
\ ******************************************************************************/
// 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/bin/distributed_math_actor -s -p 4242
//
// Run client at the same host:
// - ./build/bin/distributed_math_actor -c -p 4242
// This file is partially included in the manual, do not modify
// without updating the references in the *.tex files!
// Manual references: lines 254-266 (ConfiguringActorSystems.tex)
#include <array>
#include <vector>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment