hobbes
a language, embedded compiler, and runtime for efficient dynamic expression evaluation, data storage and analysis
batchrecv.H
Go to the documentation of this file.
1 /*
2  * batchrecv : write local structured log files from compressed transaction data sent over a network
3  */
4 
5 #ifndef HOG_BATCHRECV_H_INCLUDED
6 #define HOG_BATCHRECV_H_INCLUDED
7 
8 #include <string>
9 #include <functional>
10 #include <thread>
11 
12 namespace hog {
13 
14 std::thread pullRemoteDataT(const std::string& dir, const std::string& listenport);
15 bool pullRemoteData(const std::string& dir, const std::string& listenport);
16 
17 }
18 
19 #endif
20 
bool pullRemoteData(const std::string &dir, const std::string &listenport)
Definition: batchrecv.C:203
Definition: batchrecv.C:20
std::thread pullRemoteDataT(const std::string &dir, const std::string &listenport)
Definition: batchrecv.C:198