d0e3550025
Migrate _connection from MutableSharedFlow + tryEmit to Channel(UNLIMITED) + send to ensure no connection events are dropped under high load. Removes unused MutableSharedFlow and asSharedFlow imports. Changes public connection property type from SharedFlow to Flow for consistency with messages field. - Replace MutableSharedFlow with Channel(UNLIMITED) for _connection - Convert all _connection.tryEmit() calls to _connection.send() - Update public connection property to use receiveAsFlow() - Add TuiWsClientConnectionChannelTest with 10k event no-drop verification