PhoenixSocket  5.0.0
Library which integrates socket use in Phoenix
Loading...
Searching...
No Matches
PRecvFlag Namespace Reference

Enumerations

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

Enumeration Type Documentation

◆ PRecvFlag

describe the receiving flag of the Socket

Enumerator
BLOCK 
NON_BLOCK 

Definition at line 35 of file PSocketFlag.h.

35 {
36 BLOCK, //Normal usage of the Socket. Blocking until a message comes
37 NON_BLOCK //The Socket recv does not stop the execution of the program
38 };