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
4e96bbf2
Commit
4e96bbf2
authored
Feb 14, 2020
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename files for the manual
(cherry picked from commit
c0b7fcd9
)
parent
a1a9928c
Changes
27
Show whitespace changes
Inline
Side-by-side
Showing
27 changed files
with
1 addition
and
220 deletions
+1
-220
.gitignore
.gitignore
+1
-1
doc/tex/manual.tex
doc/tex/manual.tex
+0
-219
doc/tex/newcommands.tex
doc/tex/newcommands.tex
+0
-0
manual/Actors.rst
manual/Actors.rst
+0
-0
manual/Brokers.rst
manual/Brokers.rst
+0
-0
manual/CommonPitfalls.rst
manual/CommonPitfalls.rst
+0
-0
manual/ConfiguringActorApplications.rst
manual/ConfiguringActorApplications.rst
+0
-0
manual/Error.rst
manual/Error.rst
+0
-0
manual/FAQ.rst
manual/FAQ.rst
+0
-0
manual/GroupCommunication.rst
manual/GroupCommunication.rst
+0
-0
manual/Introduction.rst
manual/Introduction.rst
+0
-0
manual/ManagingGroupsOfWorkers.rst
manual/ManagingGroupsOfWorkers.rst
+0
-0
manual/MessageHandlers.rst
manual/MessageHandlers.rst
+0
-0
manual/MessagePassing.rst
manual/MessagePassing.rst
+0
-0
manual/Messages.rst
manual/Messages.rst
+0
-0
manual/MigrationGuides.rst
manual/MigrationGuides.rst
+0
-0
manual/NetworkTransparency.rst
manual/NetworkTransparency.rst
+0
-0
manual/Overview.rst
manual/Overview.rst
+0
-0
manual/ReferenceCounting.rst
manual/ReferenceCounting.rst
+0
-0
manual/Registry.rst
manual/Registry.rst
+0
-0
manual/RemoteSpawn.rst
manual/RemoteSpawn.rst
+0
-0
manual/Scheduler.rst
manual/Scheduler.rst
+0
-0
manual/Streaming.rst
manual/Streaming.rst
+0
-0
manual/Testing.rst
manual/Testing.rst
+0
-0
manual/TypeInspection.rst
manual/TypeInspection.rst
+0
-0
manual/UsingAout.rst
manual/UsingAout.rst
+0
-0
manual/Utility.rst
manual/Utility.rst
+0
-0
No files found.
.gitignore
View file @
4e96bbf2
...
@@ -6,5 +6,5 @@ blog_release_note.md
...
@@ -6,5 +6,5 @@ blog_release_note.md
build/*
build/*
github_release_note.md
github_release_note.md
html/*
html/*
manual
manual
/html/*
release.txt
release.txt
doc/tex/manual.tex
deleted
100644 → 0
View file @
a1a9928c
\documentclass
[
%
a4paper,
% % DIN A4
oneside,
% % einseitiger Druck
12pt,
% % 12pt Schriftgröße
]
{
article
}
\usepackage
[utf8]
{
inputenc
}
% include required packages
\usepackage
{
array
}
\usepackage
{
capt-of
}
\usepackage
{
color
}
\usepackage
{
float
}
\usepackage
{
graphicx
}
\usepackage
{
hyperref
}
\usepackage
{
listings
}
\usepackage
{
multicol
}
\usepackage
{
tabularx
}
\usepackage
{
url
}
\usepackage
{
xifthen
}
\usepackage
{
xspace
}
% font setup
\usepackage
[scaled=.90]
{
helvet
}
\usepackage
{
cmbright
}
\usepackage
{
courier
}
\usepackage
{
txfonts
}
% paragraph settings
\parindent
0pt
\parskip
8pt
\pretolerance
=150
\tolerance
=500
\emergencystretch
=
\maxdimen
\hbadness
=10000
\pagenumbering
{
arabic
}
% custom colors
\definecolor
{
lightgrey
}{
rgb
}{
0.9,0.9,0.9
}
\definecolor
{
lightblue
}{
rgb
}{
0,0,1
}
\definecolor
{
grey
}{
rgb
}{
0.5,0.5,0.5
}
\definecolor
{
blue
}{
rgb
}{
0,0,1
}
\definecolor
{
violet
}{
rgb
}{
0.5,0,0.5
}
\definecolor
{
darkred
}{
rgb
}{
0.5,0,0
}
\definecolor
{
darkblue
}{
rgb
}{
0,0,0.5
}
\definecolor
{
darkgreen
}{
rgb
}{
0,0.5,0
}
\input
{
tex/variables
}
\title
{
%
\texttt
{
\huge
{
\textbf
{
CAF
}}}
\\
~
\\
The C++ Actor Framework
\\
~
\\
~
\\
~
\\
User Manual
\\
\normalsize
{
Version
\cafrelease
}
\\
~
\\
~
\\
\tiny
SHA
\cafsha
\vfill
}
\author
{
Dominik Charousset
}
\date
{
\today
}
% page setup
\setlength
{
\voffset
}{
-1in
}
\setlength
{
\hoffset
}{
-0.75in
}
\addtolength
{
\textwidth
}{
1.5in
}
\addtolength
{
\textheight
}{
2in
}
\setlength
{
\headheight
}{
15pt
}
% include paragraphs in TOC
\setcounter
{
tocdepth
}{
3
}
% more compact itemize
\newenvironment
{
itemize*
}
%
{
\begin{itemize}
%
\setlength
{
\itemsep
}{
0pt
}
%
\setlength
{
\parskip
}{
0pt
}}
%
{
\end{itemize}
}
\begin{document}
\maketitle\thispagestyle
{
empty
}
\pagestyle
{
empty
}
\clearpage
\tableofcontents
\clearpage
\setcounter
{
page
}{
1
}
\pagestyle
{
plain
}
% directory layout
\graphicspath
{{
pdf/
}}
% custom commands
\newcommand
{
\sref
}
[1]
{
\S\,\ref
{
#1
}}
\newcommand
{
\see
}
[1]
{
(see~
\sref
{
#1
}
)
}
\newcommand
{
\singlefig
}
[3]
{
\begin{figure}
[H]
\centering
\includegraphics
[width=.6\columnwidth]
{
#1
}
\caption
{
#2
}
\label
{
#3
}
\end{figure}
}
\newcommand
{
\experimental
}{
{
\color
{
darkred
}
\textsuperscript
{
experimental
}}
}
\newcommand
{
\cppexample
}
[2][]
{
%
\ifthenelse
{
\isempty
{
#1
}}
%
{
\lstinputlisting
{
\cafroot
/examples/#2.cpp
}}
%
{
\lstinputlisting
[language=C++,linerange={#1}]
{
\cafroot
/examples/#2.cpp
}}
%
}
\newcommand
{
\iniexample
}
[2][]
{
%
\ifthenelse
{
\isempty
{
#1
}}
%
{
\lstinputlisting
[language=ini]
{
\cafroot
/examples/#2.ini
}}
%
{
\lstinputlisting
[language=ini,linerange={#1}]
{
\cafroot
/examples/#2.ini
}}
%
}
\newcommand
{
\sourcefile
}
[2][]
{
%
\ifthenelse
{
\isempty
{
#1
}}
%
{
\lstinputlisting
[language=C++]
{
\cafroot
/#2
}}
%
{
\lstinputlisting
[language=C++,linerange={#1}]
{
\cafroot
/#2
}}
%
}
% highlight for INI file syntax
\lstdefinelanguage
{
ini
}{
%
basicstyle=
\ttfamily\footnotesize
,
%
% columns=fullflexible,%
morecomment=[s][
\color
{
blue
}
]
{
[
}{
]
}
,
%
morecomment=[l]
{
;
}
,
%
morecomment=[s]
{
<
}{
>
}
,
%
morestring=[b]",
%
morestring=[b]',
%
commentstyle=
\color
{
violet
}
,
%
morekeywords=
{}
,
%
otherkeywords=
{
=,false,true
}
,
%
keywordstyle=
\color
{
blue
}
,
%
stringstyle=
\color
{
darkgreen
}
,
%
}
% code listings setup
\lstset
{
%
language=C++,
%
morekeywords=
{
constexpr,nullptr,size
_
t,uint32
_
t,assert,override,final
}
,
%
basicstyle=
\ttfamily\footnotesize
,
%
sensitive=true,
%
keywordstyle=
\color
{
blue
}
,
%
stringstyle=
\color
{
darkgreen
}
,
%
commentstyle=
\color
{
violet
}
,
%
showstringspaces=false,
%
tabsize=2,
%
frame=leftline,
rulecolor=
\color
{
lightblue
}
,
xleftmargin=20pt,
}
\lstset
{
numberstyle=
\tiny
,
numbers=left,
numbersep=10pt,
xleftmargin=20pt,
%framesep=4.5mm,
%framexleftmargin=2.5mm,
framexleftmargin=5pt,
framesep=15pt,
fillcolor=
\color
{
lightgrey
}
,
}
% content
\part
{
Core Library
}
\include
{
tex/Introduction
}
\include
{
tex/FirstSteps
}
\include
{
tex/TypeInspection
}
\include
{
tex/MessageHandlers
}
\include
{
tex/Actors
}
\include
{
tex/MessagePassing
}
\include
{
tex/Scheduler
}
\include
{
tex/Registry
}
\include
{
tex/ReferenceCounting
}
\include
{
tex/Error
}
\include
{
tex/ConfiguringActorApplications
}
\include
{
tex/Messages
}
\include
{
tex/GroupCommunication
}
\include
{
tex/ManagingGroupsOfWorkers
}
\include
{
tex/Streaming
}
\include
{
tex/Testing
}
\part
{
I/O Library
}
\include
{
tex/NetworkTransparency
}
\include
{
tex/Brokers
}
\include
{
tex/RemoteSpawn
}
\part
{
Appendix
}
\include
{
tex/FAQ
}
\include
{
tex/Utility
}
\include
{
tex/CommonPitfalls
}
\include
{
tex/UsingAout
}
\include
{
tex/MigrationGuides
}
\end{document}
doc/tex/newcommands.tex
deleted
100644 → 0
View file @
a1a9928c
doc/tex/Actors.tex
→
manual/Actors.rst
View file @
4e96bbf2
File moved
doc/tex/Brokers.tex
→
manual/Brokers.rst
View file @
4e96bbf2
File moved
doc/tex/CommonPitfalls.tex
→
manual/CommonPitfalls.rst
View file @
4e96bbf2
File moved
doc/tex/ConfiguringActorApplications.tex
→
manual/ConfiguringActorApplications.rst
View file @
4e96bbf2
File moved
doc/tex/Error.tex
→
manual/Error.rst
View file @
4e96bbf2
File moved
doc/tex/FAQ.tex
→
manual/FAQ.rst
View file @
4e96bbf2
File moved
doc/tex/GroupCommunication.tex
→
manual/GroupCommunication.rst
View file @
4e96bbf2
File moved
doc/tex/Introduction.tex
→
manual/Introduction.rst
View file @
4e96bbf2
File moved
doc/tex/ManagingGroupsOfWorkers.tex
→
manual/ManagingGroupsOfWorkers.rst
View file @
4e96bbf2
File moved
doc/tex/MessageHandlers.tex
→
manual/MessageHandlers.rst
View file @
4e96bbf2
File moved
doc/tex/MessagePassing.tex
→
manual/MessagePassing.rst
View file @
4e96bbf2
File moved
doc/tex/Messages.tex
→
manual/Messages.rst
View file @
4e96bbf2
File moved
doc/tex/MigrationGuides.tex
→
manual/MigrationGuides.rst
View file @
4e96bbf2
File moved
doc/tex/NetworkTransparency.tex
→
manual/NetworkTransparency.rst
View file @
4e96bbf2
File moved
doc/tex/FirstSteps.tex
→
manual/Overview.rst
View file @
4e96bbf2
File moved
doc/tex/ReferenceCounting.tex
→
manual/ReferenceCounting.rst
View file @
4e96bbf2
File moved
doc/tex/Registry.tex
→
manual/Registry.rst
View file @
4e96bbf2
File moved
doc/tex/RemoteSpawn.tex
→
manual/RemoteSpawn.rst
View file @
4e96bbf2
File moved
doc/tex/Scheduler.tex
→
manual/Scheduler.rst
View file @
4e96bbf2
File moved
doc/tex/Streaming.tex
→
manual/Streaming.rst
View file @
4e96bbf2
File moved
doc/tex/Testing.tex
→
manual/Testing.rst
View file @
4e96bbf2
File moved
doc/tex/TypeInspection.tex
→
manual/TypeInspection.rst
View file @
4e96bbf2
File moved
doc/tex/UsingAout.tex
→
manual/UsingAout.rst
View file @
4e96bbf2
File moved
doc/tex/Utility.tex
→
manual/Utility.rst
View file @
4e96bbf2
File moved
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