Releases: centrifugal/centrifuge-go
Releases · centrifugal/centrifuge-go
v0.6.4
- Add
Subscription.Close
method to close Subscription when it's not needed anymore. This method unsubscribes from a channel and removes Subscription from internalClient
subscription registry – thus freeing resources. Subscription is not usable afterClose
called. This method can be helpful if you work with lots of short-living subscriptions to different channels to prevent unlimited internal Subscription registry growth.
v0.6.3
v0.6.2
v0.6.1
v0.6.0
- server-side subscriptions support
- get rid of Protobuf protocol struct
Publication
andClientInfo
aliases – use library scope structures instead - change return values of
RPC
,NamedRPC
,History
,Presence
,PresenceStats
,Publish
methods to be more meaningful and extensible - much faster resubscribe to many subscriptions (previously we waited for each individual subscription response before moving further, now process is asynchronous)
- improved reconnect logic
- Client and Subscription status refactoring
- fix inconsistent join/subscribe event ordering – now both processed in order coming from server