ZIO
Python and C++ interface to ZeroMQ and Zyre
protocol.hpp
Go to the documentation of this file.
1 
6 #ifndef ZIO_DOMO_PROTOCOL_HPP_SEEN
7 #define ZIO_DOMO_PROTOCOL_HPP_SEEN
8 
9 namespace zio {
10 namespace domo {
11 namespace mdp {
12 namespace client {
13  // Identify the type and version of the client sub-protocol
14  inline const char* ident = "MDPC01";
15 }
16 namespace worker {
17  // Identify the type and version of the worker sub-protocol
18  inline const char* ident = "MDPW01";
19 
21  inline const char* ready = "\001";
22  inline const char* request ="\002";
23  inline const char* reply = "\003";
24  inline const char* heartbeat = "\004";
25  inline const char* disconnect = "\005";
26 }}}}
27 
28 #endif
const char * reply
Definition: protocol.hpp:23
const char * heartbeat
Definition: protocol.hpp:24
const char * disconnect
Definition: protocol.hpp:25
const char * ready
Worker commands as strings.
Definition: protocol.hpp:21
const char * request
Definition: protocol.hpp:22
void client(std::string str)
const char * ident
Definition: protocol.hpp:14
implementation of ZIO data flow protocol endpoints
Definition: actor.hpp:14