Files
ChunilENG/Packages/com.tivadar.best.websockets/CHANGELOG.md
정영민 2dd5d814a7 update
2025-02-20 09:59:37 +09:00

795 B

Changelog

3.0.0 (2023-01-01)

Additions and improvements

  • New namespace hierarchy, instead of BestHTTP.WebSocket the WebSocket class is in the Best.Websockets namespace.
  • The OnBinary event now receives a BufferSegment and the memory will be reused after the event.
  • The OnClosed event now receives an WebSocketStatusCodes enum as its status code.

Removals

  • Removed the OnBinaryNoAlloc event.

Fixes

  • Fixed confusing naming by renaming StartPingThread to SendPings
  • Fixed confusing behavior because of the two closure events OnError and OnClosed by mergind the two into one OnClosed event. The behavior of OnClosed is now matching what browsers have.