Chat SDK now supports concurrent message handling
Chat SDK adds a concurrency option to its Chat class with four message-handling strategies: drop, queue, debounce, and concurrent, giving developers control over overlapping message processing.
now lets you control what happens when a new message arrives before a previous one finishes processing, with the new option for the Chat class.Chat SDKconcurrency Four strategies are available: Read the to get started.documentation Read more (default): discards incoming messagesdrop : processes the latest message after the handler finishesqueue : waits for a pause in conversation, processes only the final messagedebounce : processes every message immediately, no lockingconcurrent