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

Enumerations

enum  PSendFlag { BLOCK , NON_BLOCK }
 describe the sending flag of the Socket More...
 

Enumeration Type Documentation

◆ PSendFlag

describe the sending flag of the Socket

Enumerator
BLOCK 
NON_BLOCK 

Definition at line 12 of file PSocketFlag.h.

12  {
13  BLOCK, //Normal usage of the Socket. Blocking until a message is sent
14  NON_BLOCK //The Socket send does not stop the execution of the program
15  };