aboutsummaryrefslogtreecommitdiffstats
path: root/frtstream/docs
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@oath.com>2018-02-08 22:20:59 +0100
committerHenning Baldersheim <balder@oath.com>2018-02-08 22:20:59 +0100
commitc5efc8a165778b83bf0256663c8f6d69348bb929 (patch)
treeeebc97063a0ec492ef865b66ca715fefb4747172 /frtstream/docs
parentbd90807da307dc205f24386f1b96546dd1b039c5 (diff)
Remove no longer used frtstream
Diffstat (limited to 'frtstream/docs')
-rw-r--r--frtstream/docs/introduction.txt27
1 files changed, 0 insertions, 27 deletions
diff --git a/frtstream/docs/introduction.txt b/frtstream/docs/introduction.txt
deleted file mode 100644
index d733d7be0da..00000000000
--- a/frtstream/docs/introduction.txt
+++ /dev/null
@@ -1,27 +0,0 @@
-FrtStream provides an iostream like interface to Frt. It consists of
-two main parts: FrtClientStream and FrtServerStream. Both streams can
-read/write integers, floating point numbers, strings(std), and
-standard c++ containers containing these types. Other types can be
-added by operator overloading.( like for iostreams )
-
-FrtClientStream
-This is a complete abstraction for making simple Frt clients.
-It's used the following way:
-
-FrtClientStream s(<connectionSpec>);
-s <<Method(<methodName>) <<param1 <<param2 ... <<paramN;
-s >> result1 >>result2 ... >>resultn
-
-s <<Method(<methodName2>) ...
-
-
-
-FrtServerStream
-This is currently only a wrapper to use around Request
-objects on the server to ease working with parameters and return
-values. It's used inside method handlers by making a FrtServerStream
-on the stack and passing the request object to it's constructor:
-
-FrtServerStream s(request);
-s >>param1 >>param2 .... >>paramn
-s <<return1 <<return2 ... <<returnn.