PhoenixSocket  4.0.1
Library which integrates socket unix use in Phoenix
Loading...
Searching...
No Matches
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 14 of file PSocketFlag.h.

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