ably-java
ably-java copied to clipboard
Java, Android, Clojure and Scala client library SDK for Ably realtime messaging service
paddybyers thinks it may related to a known issue with OpenJDK: https://github.com/ably/ably-java/pull/388 However, if `./gradlew --version` is telling me the truth then this may be unrelated or otherwise a regression......
This change implements the "subscription" aspect of the message interactions feature. JIRA links: - Epic: https://ably.atlassian.net/browse/CON-6 - Story: https://ably.atlassian.net/browse/CON-2 Spec points: - RTL22 - MFI1 - MFI2 It contains the...
**RealtimeChannel: attach_when_channel_in_detaching_state** The test was failing/flakey because the channel sometimes quickly cycled through detaching into attaching, before the listener had a chance to check the state. This change fixes the...
_We've had a report from a customer, [via Intercom](https://app.intercom.com/a/apps/ua39m1ld/inbox/inbox/conversation/38483300001110). Conversation detail, with redactions:_ CUSTOMER: hello. I get handshake failure: ``` [Ably internal] setState(): setting suspended; reason [ErrorInfo message=Received fatal alert:...
[RSL7](https://docs.ably.io/client-lib-development-guide/features/#RSL7) states: > Channel#setOptions takes a ChannelOptions object and sets or updates the stored channel options, then indicates success Unfortunately, you cannot do this for Rest channel (`rest/ChannelBase.java`. This should...
As captured here https://github.com/ably/ably-flutter/issues/14 * `extras` property is missing from `PresenceMessage` object PresenceMessage object: https://docs.ably.io/realtime/types/#presence-message ┆Issue is synchronized with this [Jira Story](https://ably.atlassian.net/browse/SDK-1455) by [Unito](https://www.unito.io)
Spotted here https://github.com/ably/ably-flutter/issues/14 * `nonce` does not exist in `TokenParams` object TokenParams object : https://docs.ably.io/realtime/types/#token-params ┆Issue is synchronized with this [Jira Story](https://ably.atlassian.net/browse/SDK-1454) by [Unito](https://www.unito.io)
Captured by this issue https://github.com/ably/ably-flutter/issues/14 Following are missing properties from `ErrorInfo` class * `requestId` * `cause` ┆Issue is synchronized with this [Jira Story](https://ably.atlassian.net/browse/SDK-1453) by [Unito](https://www.unito.io)
Some of these strings were previously not documented at all. Now that they are (see https://github.com/ably/docs/pull/1177), we should prevent users having to manually use these strings in their app. These...
To allow users to make a network request without blocking a thread, we should allow users to provide the result of their token auth server (`TokenRequest`, `TokenDetails` or JWT/ Token...