PhoenixZMQ  2.0.0
Library which integrates zeromq use in Phoenix
PRecvFlag Namespace Reference

Enumerations

enum  PRecvFlag { BLOCK , NON_BLOCK }
 describe the recieving flag of the Socket More...
 

Enumeration Type Documentation

◆ PRecvFlag

describe the recieving flag of the Socket

Enumerator
BLOCK 
NON_BLOCK 

Definition at line 20 of file PSocketFlag.h.

20  {
21  BLOCK, //Normal usage of the Socket. Blocking until a message comes
22  NON_BLOCK //The Socket recv does not stop the execution of the program
23  };