Legacy Documentation: Version 5.4
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

QosType

enumeration

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

Descibed allowed types of quality of service for channels.

Variables

UnreliableJust sending message, no grants.
UnreliableFragmentedThe same as unreliable, but big message (up to 32 fragment per message) can be sent.
UnreliableSequencedThe same as unrelaible but all unorder messages will be dropped. Example: VoIP.
ReliableChannel will be configured as relaiable, each message sent in this channel will be delivered or connection will be disconnected.
ReliableFragmentedSame as reliable, but big messages are allowed (up to 32 fragment with fragmentsize each for message).
ReliableSequencedThe same as reliable, but with granting message order.
StateUpdateUnreliable, only last message in send buffer will be sent, only most recent message in reading buffer will be delivered.
ReliableStateUpdateThe same as StateUpdate, but reliable.
AllCostDeliveryReliable message will resend almost with each frame, without waiting delivery notification. usefull for important urgent short messages, like a shoot.