Navigation
API > API/Runtime > API/Runtime/IrisCore
Enum used to report packet notifications to DataStreams.
| Name | UE::Net::EPacketDeliveryStatus |
| Type | enum |
| Header File | /Engine/Source/Runtime/Net/Iris/Public/Iris/PacketControl/PacketNotification.h |
| Include Path | #include "Iris/PacketControl/PacketNotification.h" |
Syntax
namespace UE
{
namespace Net
{
enum EPacketDeliveryStatus
{
Delivered,
Lost,
Discard,
}
}
}
Values
| Name | Remarks |
|---|---|
| Delivered | The packet was delivered. |
| Lost | The packet was lost or ignored by the recipient due to out of order delivery for example. |
| Discard | Free any resource related to this packet, such as a DataStreamRecord. |