PhoenixSocket  1.0.0
Library which integrates socket unix use in Phoenix
Loading...
Searching...
No Matches
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 };