Upgrade guide¶
This page provides guidance on all changes to the Hive chat API and items that are no longer supported.
You can refer to the content to smoothly upgrade the Hive chat integration to the latest version.
Changes¶
25.4.0¶
- Changes have been made to the listener events registered with the Chat class's
addConnectionListener
method as follows:- The
onReconnectStarted
event has been newly added. It is called when the Chat class'sreconnect
API is called or when a change in state is detected internally to automatically retry the chat connection. - The
onReconnected
event now includes aResultAPI
object containing result information.
- The
Deprecated items¶
25.4.0¶
- The Chat class's
addDirectMessageListener
andremoveDirectMessageListener
methods are no longer supported.
The existing 1:1 message reception functionality can be handled through the Chat class'saddUserListener
andremoveUserListener
methods.