Navigation
API > API/Runtime > API/Runtime/Sockets
Enumerates socket wait conditions.
| Name | ESocketWaitConditions::Type |
| Type | enum |
| Header File | /Engine/Source/Runtime/Sockets/Public/SocketTypes.h |
| Include Path | #include "SocketTypes.h" |
Syntax
namespace ESocketWaitConditions
{
enum Type
{
WaitForRead,
WaitForWrite,
WaitForReadOrWrite,
}
}
Values
| Name | Remarks |
|---|---|
| WaitForRead | Wait until data is available for reading. |
| WaitForWrite | Wait until data can be written. |
| WaitForReadOrWrite | Wait until data is available for reading or can be written. |