enum NetworkSendFlagBits

Flags controlling how messages are sent over the network.

Values

NameValueDescription
None 0 Default unreliable send.
Reliable 1 Ensure reliable delivery (message will be resent until acknowledged).
NoNagle 2 Disable Nagle's algorithm (send immediately, don't wait to coalesce).
NoDelay 4 Bypass queue and send immediately (combines NoNagle with additional priority).
UnreliableNoDelay 8 Optimized unreliable + no delay combination.
UseCurrentThread 16 Use calling thread for sending instead of background thread.