I made a chat group with transport, in one frame the message should be sent to thousands of people in the group. How does transport send messages? Does he send them one by one or does he try to send them all at the same time?
The transport package sends all queued messages in the jobs scheduled by ScheduleUpdate
or ScheduleFlushSend
. The entire queue is emptied for each execution of the job. For reliable traffic, the messages are all sent at once (as long as there’s room in the reliable window). We do not wait for each individual message to be acknowledged before sending the next one.
1 Like