title | section | index | anchor_specs | languages | jump_to | |||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Features spec |
client-lib-development-guide |
1 |
true |
|
|
This document outlines the complete feature set of both the REST and Realtime client libraries. It is expected that every client library developer refers to this document to ensure that their client library provides the same API and features as the existing Ably client libraries. In addition to this, it is essential that there is test coverage over all of the features described below. As an example, see the Ruby library test specification and coverage generated from the test suite.
We recommend you use the IDL and refer to other existing libraries that adhere to this spec as a reference when reviewing how the API has been implemented.
The key words “must”, “must not”, “required”, “shall”, “shall not”, “should”, “should not”, “recommended”, “may”, and “optional” (whether lowercased or uppercased) in this document are to be interpreted as described in RFC 2119 .
Please note we maintain a separate Google Sheet that keeps track of which features are implemented and matching test coverage for each client library. If you intend to work on an Ably client library, please contact us for access to this Google Sheet as it is useful as a reference and also needs to be kept up to date
(CSV1)
Specification Version: This document defines the Ably client library features specification (‘features spec’).(CSV1a)
The specification version is a SemVer value (from specification version2.0.0
onwards).(CSV1b)
This document defines specification version{{ SPECIFICATION_VERSION }}
.
(CSV2)
Protocol Version: This document describes requirements for client libraries that are compatible with Ably endpoints at a specific protocol version (also referred to as the ‘wire protocol’ version).(CSV2a)
The protocol version is an Integer value (from protocol version2
onwards – it was a Decimal prior to that, for example1.2
).(CSV2b)
This document is compatible with protocol version{{ PROTOCOL_VERSION }}
.(CSV2c)
A client library must identify to Ably the protocol version it uses in all requests and connections, perRSC7a
andRTN2f
.(CSV2d)
It is expected, very likely required, that client libraries which implement most or all of this specification at the version defined in this document (CSV1b
) will need to identify with Ably at the protocol version defined in this document (CSV2b
). There may, from time to time, be edge cases where this is not the case but these must be considered very carefully (for example a client library using an older protocol version until fully implemented).(CSV2e)
Client libraries that need to send a Decimal protocol version must send the exact string specified inCSV2b
(previouslyG4
). Therefore, it is recommended that client library implementations treat the version opaquely, as a string, not a float.
(G1)
Every test should be executed using all supported protocols (i.e. JSON and MessagePack if supported). This includes both sending & receiving data(G2)
All tests by default are run against a special Ably sandbox environment. This environment allows apps to be provisioned without any authentication that can then be used for client library testing. Bear in mind that all apps created in the sandbox environment are automatically deleted after 60 minutes and have low limits to prevent abuse. Apps are configured by sending aPOST
request tohttps://sandbox-rest.ably.io/apps
with a JSON body that specifies the keys and their associated capabilities, channel namespace rules and any presence fixture data that is required; see ably-common test-app-setup.json. Presence fixture data is necessary for the REST library presence tests as there is no way to register presence on a channel in the REST library(G3)
Testing statistics can be tricky due to timing issues and slow test suites as a result of sending requests to generate statistics. As such, we provide a special stats endpoint in our sandbox environment that allows stats to be injected into our metrics system so that stats tests can make predictable assertions. To create stats you must send an authenticatedPOST
request to the stats JSON tohttps://sandbox-rest.ably.io/stats
with the stats data you wish to create. See the JavaScript stats fixture and setup helper as an example(G4)
This clause has been replaced byCSV1
andCSV2
. It was valid up to and including specification version 1.2.(G4a)
This clause has been replaced byCSV2d
. It was valid up to and including specification version 1.2.
(RSC1)
The constructor accepts a set ofClientOptions
or, in languages that support overloaded constructors, a string which may be a token string or an API key.(RSC1a)
If a single string argument is supplied when constructing the library then the library must determine whether this is a key or a token by checking for the presence of the ‘:’ (colon) delimiter present in an API key. Any other string must be treated as a token string.(RSC1b)
If invalid arguments are provided such as no API key, no token and no means to create a token, then this will result in an error with error code 40106 and an informative message.(RSC1c)
Tests must exist that in each overloaded library constructor the library correctly determines an API key to be a key, and each type of token string is determined to be a token.
(RSC2)
The logger by default outputs toSTDOUT
(or other logging medium as appropriate to the platform) and the log level is set to warning(RSC3)
The log level can be changed(RSC4)
A custom logger can be provided in the constructor(RSC5)
RestClient#auth
attribute provides access to theAuth
object that was instantiated with theClientOptions
provided in theRestClient
constructor(RSC6)
RestClient#stats
function:(RSC6a)
Returns aPaginatedResult
page containingStats
objects in thePaginatedResult#items
attribute returned from the stats request(RSC6b)
Supports the following params:(RSC6b1)
start
andend
are optional timestamp fields represented as milliseconds since epoch, or where suitable to the language, Date or Time objects.start
, if provided, must be equal to or less thanend
if provided or to the current time otherwise, and is unaffected by the request direction(RSC6b2)
direction
backwards or forwards; if omitted the direction defaults to the REST API default (backwards)(RSC6b3)
limit
supports up to 1,000 items; if omitted the limit defaults to the REST API default (100)(RSC6b4)
unit
is the period for which the stats will be aggregated by, values supported areminute
,hour
,day
ormonth
; if omitted the unit defaults to the REST API default (minute
)
(RSC16)
RestClient#time
function sends a get request torest.ably.io/time
and returns the server time in milliseconds since epoch or as a Date/Time object where suitable(RSC21)
RestClient#push
attribute provides access to thePush
object that was instantiated with theClientOptions
provided in theRestClient
constructor(RSC7)
Sends REST requests over HTTP and HTTPS to the REST endpointrest.ably.io
(RSC7a)
This clause has been replaced byRSC7e
. It was valid up to and including specification version2.1
.(RSC7e)
TheX-Ably-Version
HTTP header must be included in all REST requests to Ably endpoints. The value to be sent is defined byCSV2
, except in the case where the user directly callsRestClient#request
, in which case the value to be sent is defined byRSC19f1
.(RSC7b)
(Please note this clause and the associated header have now been superseded by RCS7d) The headerX-Ably-Lib: [lib][.optional variant]?-[version]
should be included in all REST requests to the Ably endpoint where[lib]
is the name of the library such asjs
forably-js
,[.optional variant]
is an optional library variant, such aslaravel
for thephp
library, which is always delimited with a period such asphp.laravel
, and where[version]
is the full client library version using Semver such as1.0.2
. For example, the 1.0.0 version of the JavaScript library would use the headerX-Ably-Lib: js-1.0.0
.(RSC7b1)
When it is not possible to send theX-Ably-Lib
header, such as forJSONP
requests, the library version should be sent as a query param such aslib=js-1.0.0
(RSC7c)
If theaddRequestIds
client option is enabled, every REST request to Ably should include in arequest_id
query string parameter a random string obtained by url-safe base64-encoding a sequence of at least 9 bytes obtained from a source of randomness. This request ID must remain the same if a request is retried to a fallback host perRSC15
. Any log messages associated with the request should include the request ID. If the request fails, the request ID must be included in theErrorInfo
returned to the user.(RSC7d)
AnAgent
library identifier is used to identify the library type and version, as well as relevant information describing any underlying layers and the client platform.(RSC7d1)
TheAgent
library identifier is composed of a series ofkey[/value]
entries joined by spaces wherekey
is the name of a product andvalue
is an optional version of the associated product. This must include at least the<library name>/<library version>
entry plus, optionally, thename[/version]
entry for underlying library layer or platform layers. An example would beably-flutter/1.2.0 ably-java/1.2.1 android/24
.(RSC7d2)
Where possible, theAgent
library identifier should be included in all HTTP and WebSocket requests to the Ably endpoint via anAbly-Agent
HTTP header.(RSC7d3)
Where the library is unable to specify a header when making a request (such as forJSONP
requests), theAgent
library identifier should be sent via anagent
query param whose value is the URI-encodedAgent
library identifier.(RSC7d4)
Where possible, product versions should be represented as a valid semantic version. This is best-effort as we recognise that strict SemVer is not always available, or otherwise possible to derive from information available at runtime, especially in the case of products that represent operating system versions.(RSC7d5)
Products must be added to the canonicalagents
data file in our common repository. See Agents in ably-common for more information.(RSC7d6)
Libraries may offer aClientOptions#agents
property, for use only by other Ably-authored SDKs, on a need-to-have basis.(RSC7d6a)
The product/version key-value pairs supplied to that property should be injected into allAgent
library identifiers emitted by connections made as a result of REST or Realtime instances created using thoseClientOptions
.(RSC7d6b)
An API commentary must be provided for this property. This commentary must make it clear that this interface is only to be used by Ably-authored SDKs.
(RSC18)
IfClientOptions#tls
is true, then all communication is over HTTPS. If false, all communication is over HTTP however Basic Auth over HTTP will result in an error as private keys cannot be submitted over an insecure connection. SeeAuth
below(RSC8)
Supports two protocols:(RSC8a)
MessagePack binary protocol (this is the default for environments having a suitable level or support for binary data)(RSC8b)
JSON text protocol (used whenuseBinaryProtocol
option is false)(RSC8c)
The library sets theAccept
andContent-Type
request headers, to reflect whether the client is configured to use a binary or JSON based protocol, toapplication/x-msgpack
orapplication/json
respectively.(RSC8d)
If a server response indicates aContent-Type
that does not match the type request by the library (see RSC8c), but is a type that the library supports, then the client should process the response based on the indicatedContent-Type
.(RSC8e)
If the library is unable to process the specified content type, then the library processes the response as follows.(RSC8e1)
In the case of a response with astatusCode
>= 400, an error with thatstatusCode
must be propagated back to the caller with an error message indicating that the content type is unsupported. In order to help to diagnose the cause of the error, the error message should also include text obtained by truncating the response body to a maximum of 512 bytes followed by base64-encoding.(RSC8e2)
In the case of a response with astatusCode
less than 400, an error must be propagated back to the caller with astatusCode
of 400, acode
of40013
and an error message containing the originalstatusCode
with an error message indicating that the content type is unsupported. In order to help to diagnose the cause of the error, the error message should also include text obtained by truncating the response body to a maximum of 512 bytes followed by base64-encoding.
(RSC9)
UsesAuth
to establish what authentication scheme to use, how to authenticate, and automatic issuing of tokens when necessary(RSC10)
If a REST request responds with a token error (401 HTTP status code and an Ably error value40140 <= code < 40150
), then the Auth class is responsible for reissuing a token and the request should be reattempted, see RSA4a and RSA4b(RSC11)
Requests are sent to the default endpointrest.ably.io
. However, this endpoint can be overriden by setting either therestHost
orenvironment
option. See TO3k2 for constraints.(RSC11a)
IfrestHost
is set, send requests to the specified host(RSC11b)
Ifenvironment
is set to a value other than “production”, send requests to[environment]-rest.ably.io
. For example, if theenvironment
is set tosandbox
, send requests tosandbox-rest.ably.io
(RSC12)
REST endpoint host is configurable in the Client constructor with the optionrestHost
(RSC13)
The client library must use the connection and request timeouts specified in theClientOptions
, falling back to the defaults described inClientOptions
below(RSC15)
Host Fallback(RSC15b)
The fallback behavior described by this section, RSC15, only applies when either:(RSC15b1)
ClientOptions#restHost
has not been set to an explicit value (see RSC11a) andClientOptions#port
is not set andClientOptions#tlsPort
is not set(RSC15b2)
An array ofClientOptions#fallbackHosts
is provided(RSC15b3)
the deprecatedClientOptions#fallbackHostsUseDefault
option is set totrue
(RSC15k)
When none of the statements in RSC15b are true then host fallback does not apply, and failing HTTP requests that would have qualified for a retry against a fallback host will instead result in an error immediately(RSC15e)
The primary host is by defaultrest.ably.io
(unless overriden inClientOptions#environment
orClientOptions#restHost
), which, through DNS, is automatically routed to the client’s closest datacenter. New HTTP requests (except whereRSC15f
applies and a cached fallback host is in effect) are first attempted against the primary host.(RSC15a)
In the case of an error necessitating use of an alternative host (see RSC15d), try fallback hosts in random order, continuing to try further hosts if qualifying errors occur, failing when all have been tried or the configuredhttpMaxRetryCount
has been reached (see TO3l@). This ensures that a client library is able to work around routing or other problems for the user’s closest datacenter. For example, if aPOST
request torest.ably.io
fails because the default endpoint is unreachable or unserviceable, then thePOST
request should be retried again against the fallback hosts in attempt to find an alternate healthy datacenter to service the request(RSC15g)
When the use of fallbacks applies, the set of fallback hosts is chosen as follows:(RSC15g1)
IfClientOptions#fallbackHosts
is set to an array, use those as the fallback hosts. See TO3k6 for constraints(RSC15g2)
IfClientOptions#environment
is set to a value other than “production” andClientOptions#fallbackHosts
is not set, use the environment fallback hosts (see RSC15i)(RSC15g3)
If bothClientOptions#fallbackHosts
andClientOptions#environment
are not set, use the default fallback hosts (see RSC15h)(RSC15g4)
For backwards-compatibility only, ifClientOptions#fallbackHostsUseDefault
is set totrue
andClientOptions#fallbackHosts
is not set, do not consider the value of theClientOptions#environment
option and use the default fallback hosts (see RSC15h)
(RSC15h)
The default fallback hosts area.ably-realtime.com
,b.ably-realtime.com
,c.ably-realtime.com
,d.ably-realtime.com
, ande.ably-realtime.com
(RSC15i)
The environment fallback hosts have the format[environment]-[a-e]-fallback.ably-realtime.com
. For example, ifClientOptions#environment
is set tosandbox
, the environment fallback hosts aresandbox-a-fallback.ably-realtime.com
,sandbox-b-fallback.ably-realtime.com
,sandbox-c-fallback.ably-realtime.com
,sandbox-d-fallback.ably-realtime.com
, andsandbox-e-fallback.ably-realtime.com
(RSC15j)
Requests to fallback hosts must use a matching Host header as this is necessary when fallbacks are proxied through a CDN. For example, if a request torest.ably.io
fails and will be retried toc.ably-realtime.com
, the Host header must be set toc.ably-realtime.com
in the retried request(RSC15d)
This clause has been replaced byRSC15l
.(RSC15l)
Errors that necessitate use of an alternative host include any of the following conditions. (Resending requests that have failed for other failure conditions will not fix the problem and will simply increase the load on other datacenters unnecessarily).(RSC15l1)
host unresolvable or unreachable(RSC15l2)
request timeout(RSC15l3)
a response with an HTTP status code in the range500 <= code <= 504
(RSC15l4)
a response with a `Server: CloudFront` header and an HTTP status code>= 400
(RSC15f)
Once/if a given fallback host succeeds, the client should store that successful fallback host forClientOptions.fallbackRetryTimeout
. Future HTTP requests during that period should use that host. If during this period a qualifying errors occurs on that host, or afterfallbackRetryTimeout
has expired, it should be un-stored, and the fallback sequence begun again from scratch, starting with the default primary host (rest.ably.io
orClientOptions#restHost
) or, in the case of an existing fallback realtime connection as per (RTN17e), with the current fallback realtime host.
(RSC17)
When instantiating aRestClient
, if aclientId
attribute is set inClientOptions
, then theAuth#clientId
attribute will contain the providedclientId
(RSC19)
RestClient#request
function is provided as a convenience for customers who wish to use REST API functionality that is either not documented or is not included in the API for our client libraries. The REST client library provides a function to issue HTTP requests to the Ably endpoints with all the built in functionality of the library such as authentication, paging, fallback hosts, MsgPack and JSON support etc. The function:(RSC19a)
This clause has been replaced byRSC19f
. It was valid up to and including specification version2.1
.(RSC19f)
Method signature isrequest(String method, String path, Int version, Dict<String, String> params?, JsonObject | JsonArray body?, Dict<String, String> headers?) -> HttpPaginatedResponse
with arguments:method
is a valid HTTP verb (must support"GET"
,"POST"
, and"PUT"
, should support"PATCH"
and"DELETE", may support others); @path
is the path component of the URL such as"/channels"
;params
andheaders
are optional arguments containing key-value pairs of strings (multi-valued headers are not supported) that will respectively result in querystring params and HTTP headers being added to the request (the argument types can be idiomatic for the language such asObject
in the case of JavaScript);body
is an optionalJsonObject
orJsonArray
like object argument that can be easily serialized to MsgPack or JSON(RSC19f1)
Theversion
parameter specifies the protocol version that the Ably service should use when interpreting the request. The library must include anX-Ably-Version
header in the request that it sends, with value given by this argument. (Therefore,request()
does not use theCSV2b
version number.)
(RSC19b)
All requests will unconditionally use the default authentication mechanism configured for the REST client i.e. basic or token authentication (see Auth)(RSC19c)
The library will configure theAccept
andContent-Type
type headers to reflect whether the client is configured to use a binary or JSON based protocol (see RSC8). All requests are encoded and decoded into Json or MsgPack as appropriate automatically by the library. Binarybody
payloads are not supported at this time(RSC19d)
request
method returns anHttpPaginatedResponse
object that inherits from thePaginatedResult
object to provide details on the response plus paging support where applicable. See HP1 for more details(RSC19e)
If the HTTP network request fails for reasons such as a timeout (after the underlying fallback host attempts have failed where applicable, see RSC15), then therequest
method should indicate an error in an idiomatic way for the platform
(RSC20)
(deprectated) Unexpected internal library exception handling:(RSC20a)
The library must make every attempt to handle unexpected internal exceptions as gracefully as possible. For the avoidance of doubt, unexpected internal exceptions do not include request timeouts, invalid argument values, invalid responses from third parties or exceptions in code run in callbacks registered by applications. However, any unexpected failures or unhandled exceptions in our own code that typically could trigger a crash or raise an exception in our customer’s code, is considered an unexpected internal exception(RSC20b)
The library may optionally report unexpected internal exceptions to the Ably exception reporting service. Exception reporting, when supported, is enabled by default, but can be disabled using thelogExceptionReportingUrl
ClientOption
documented inTO3m
. When enabled, the client library must:(RSC20b1)
At startup log a message with the equivalent ofinfo
log level with the message “Ably client library exception reporting enabled. Unhandled failures will be automatically submitted to errors.ably.io to help improve our service. To find out more about this feature, see https://help.ably.io/exceptions”. Theinfo
log level is preferred as customers can hide this entry by configuring the client library log level towarning
, yet will, by default, see this notice when using a client library with exception reporting enabled(RSC20b2)
Any unhandled internal exceptions should automatically submit bug reports to thelogExceptionReportingUrl
using theSentry API
either via a raw HTTP request or by using an embedded Sentry exception reporting client library. A message atinfo
log level should be logged if the request succeeds or fails i.e. a failure to submit an exception should not be logged as a failure / error. Where possible, the exception GUID returned from the Sentry API should be logged so that the specific error can be tracked
(RSC20c)
Exceptions reported must additionally include the following tags:ably-lib
with the value defined inRSC7b
,ably-version
with the value defined inRSC7a
,appId
if known from either the token or API key currently being used.(RSC20d)
All personally identifiable information, as much as is practicable, must be redacted or stripped completely before being submitted to Ably. Our intent is only to capture necessary information to debug issues in our own code(RSC20e)
Failures to log exceptions to theerrors.ably.io
endpoint must be handled gracefully. This includes for example DNS failures, TCP/HTTP requests rejected, slow requests and internal failure errors. Additionally, as specified inRSC20b2
, a failure to log an exception is logged with log levelinfo
i.e. an exception reporting failure is not consider a client libraryerror
orwarning
(RSC20f)
Any errors emitted by the library as a result of an internal failure must contain a status code500
, an error code in the range51000
to51999
and a suitable error message. The error code must match one of our common error codes
(RSC22)
RestClient#batchPublish
function:(RSC22a)
This clause has been replaced byRSC22c
. It was valid up to and including specification2.1
.(RSC22c)
Takes aBatchPublishSpec
or an array of @BatchPublishSpec@s and sends then in a POST request to/messages
.(RSC22b)
Returns an array ofBatchResult<BatchPublishSuccessResult | BatchPublishFailureResult>
s. Optionally, in languages where this is idiomatic, an overload may be implemented whereby the method can be called with a singleBatchPublishSpec
and return a singleBatchResult<BatchPublishSuccessResult | BatchPublishFailureResult>
. This is not a feature of the REST API, whose response will still be an array, so if implementing this overload, the SDK will have to extract the element from the array.(RSC23)
This clause has been replaced byRSC24
. It was valid up to and including specification2.1
.(RSC24)
RestClient#batchPresence
function takes an array of channel name strings and sends them as a comma separated string in thechannels
query parameter in a GET request to/presence
, returning aBatchResult<BatchPresenceSuccessResult | BatchPresenceFailureResult>
object.
(RSA1)
Basic Auth connects over HTTPS by default. Any attempt to use Basic Auth over HTTP without TLS will result in an error(RSA11)
When using Basic Auth, the API key is Base64 encoded and included in anAuthorization
header, as specified in RFC7235. The API key follows the format"KEY_NAME:KEY_SECRET"
so when authenticating using Basic Auth, the key name can be used as the username and the key secret as the password(RSA2)
Basic Auth is the default authentication scheme if an API key exists(RSA3)
Token Auth:(RSA3a)
Can be used over HTTP or HTTPs(RSA3b)
For REST requests, the token string is optionally Base64-encoded and used in theAuthorization: Bearer
header(RSA3c)
For Realtime websocket connections, the querystring paramaccessToken
is appended to the URL endpoint(RSA3d)
A test must exist that each type of token string is correctly passed in requests (ie according to(RSA3b)
and(RSA3c)
)
(RSA4)
Token Auth is used ifuseTokenAuth
is set to true, or ifuseTokenAuth
is unspecified and any one ofauthUrl
,authCallback
,token
, orTokenDetails
is provided(RSA4a)
When atoken
ortokenDetails
is used to instantiate the library, and no means to renew the token is provided (either an API key,authCallback
orauthUrl
):(RSA4a1)
At instantiation time, a message atinfo
log level with error code40171
should be logged indicating that no means has been provided to renew the supplied token, including an associated url perTI5
(RSA4a2)
if the server responds with a token error (401 HTTP status code and an Ably error value40140 <= code < 40150
), then the client library should indicate an error with error code40171
, not retry the request and, in the case of the realtime library, transition the connection to theFAILED
state
(RSA4b)
When the client does have a means to renew the token automatically, and the server has responded with a token error (statusCode
value of 401 and errorcode
value in the range40140 <= code < 40150
) or the client library has optionally detected the current token has expired (see RSA4b1), then the client should automatically make a single attempt to reissue the token and resend the request using the new token. If the token creation failed or the subsequent request with the new token failed due to a token error, then the request should result in an error (in the case of a realtime library, followRSA4c
)(RSA4b1)
Client libraries can optionally save a round-trip request to the Ably service for expired tokens by detecting when a token has expired when all of the following applies: the current token is aTokenDetails
object with anexpires
attribute; the library has previously queried the time from the Ably service and persisted the local clock offset according to RSA10k; theexpires
time has passed based on the Ably service time and not the local clock (which is not guaranteed to be accurate)
(RSA4c)
If an attempt by the realtime client library to authenticate is made using theauthUrl
orauthCallback
, and the request toauthUrl
fails (unlessRSA4d
applies), the callbackauthCallback
results in an error (unless RSA4d applies), an attempt to exchange aTokenRequest
for aTokenDetails
results in an error (unless RSA4d applies), the provided token is in an invalid format (as defined in RSA4e), or the attempt times out afterrealtimeRequestTimeout
, then:(RSA4c1)
AnErrorInfo
withcode
80019
,statusCode
401, andcause
set to the underlying cause should be emitted with the state change if there is one (perRSA4c2/3
) and set as the connectionerrorReason
(RSA4c2)
If the connection isCONNECTING
, then the connection attempt should be treated as unsuccessful, and as such the connection should transition to theDISCONNECTED
orSUSPENDED
state as defined in RTN14 and RTN15(RSA4c3)
If the connection isCONNECTED
, then the connection should remainCONNECTED
(RSA4d)
If a request by a realtime client to anauthUrl
results in an HTTP 403 response, or any of anauthUrl
request, anauthCallback
, or a request to Ably to exchange aTokenRequest
for aTokenDetails
result in anErrorInfo
withstatusCode
403, as part of an attempt by the realtime client to authenticate, then the client library should transition to theFAILED
state, with anErrorInfo
(withcode
80019
,statusCode
403, andcause
set to the underlying cause) emitted with the state change and set as the connectionerrorReason
(RSA4d1)
An “attempt by the realtime client to authenticate” inRSA4c
andRSA4d
includes getting a token as part of the connect sequence, anRTN22
online reauth, and an explicitauthorize()
call, but not an explicitrequestToken
call, which should have no effect on library state
(RSA4e)
If in the course of a REST request (or explicit call torequestToken
) an attempt to authenticate usingauthUrl
orauthCallback
fails due to a timeout, network error, a token in an invalid format (per RSA4f), or some other auth error condition other than an explicitErrorInfo
from Ably, the request should result in an error withcode
40170,statusCode
401, and a suitable error message(RSA4f)
The following conditions imply that the token is in an invalid format: theauthUrl
response content type is not one oftext/plain
,application/json
orapplication/jwt
; the object passed byauthCallback
is neither aString
,JsonObject
,TokenRequest
object, norTokenDetails
object; the token string or the JSON stringifiedJsonObject
,TokenRequest
orTokenDetails
is greater than 128KiB.(RSA4g)
If multipleauthOptions
are used to initialize the library, the preference ordering among them is identical toAuth#authorize
, defined inRSA10e
(RSA14)
If Token Auth is selected, yet a token is not provided and there is no means to generate a token, then this will result in an error. For example, if only the optionuseTokenAuth
is specified, and akey
is not provided, then the client library is unable to authenticate or issue a token(RSA15)
If Token Auth is selected andclientId
has been set in theClientOptions
when the library was instantiated:(RSA15a)
AnyclientId
provided inClientOptions
must match any non wildcard ('*'
)clientId
value inTokenDetails
orconnectionDetails
of theCONNECTED
ProtocolMessage
, where applicable(RSA15b)
If the clientId fromTokenDetails
orconnectionDetails
contains only a wildcard string ‘*’, then the client is permitted to be either unidentified (i.e. authorised to act on behalf of any clientId) or identified by providing aclientId
when communicating with Ably(RSA15c)
Following an auth request which uses aTokenDetails
orTokenRequest
object that contains an incompatibleclientId
, the library should in the case of Realtime transition the connection state toFAILED
, and in the case of REST result in an appropriate error response
(RSA5)
TTL for new tokens is specified in milliseconds. If the user-providedtokenParams
does not specify a TTL, the TTL field should be omitted from thetokenRequest
, and Ably will supply a token with a TTL of 60 minutes. See TK2a(RSA6)
Thecapability
for new tokens is JSON stringified. If If the user-providedtokenParams
does not specify capabilities, thecapability
field should be omitted from thetokenRequest
, and Ably will supply a token with the capabilities of the underlying key. See TK2b(RSA7)
clientId
and authenticated clients:(RSA7d)
IfclientId
is provided inClientOptions
andRSA4
indicates that token auth is to be used, theclientId
field in theTokenParams
(TK2c
) should be set to thatclientId
when requesting a token(RSA7e)
If a valid (perRSA7c
)clientId
is provided inClientOptions
, then:(RSA7e1)
For realtime clients, the connect request should include theclientId
as a querystring parameter,clientId
(RSA7e2)
For REST clients, all requests should include anX-Ably-ClientId
header with value set to theclientId
, Base64 encoded
(RSA7a)
A client is considered to be identified if aclientId
is implicit in either the connection or the authentication scheme; that is, is present in the current authentication token (with the exception of the wildcardclientId
'*'
), is set by a header perRSA7e2
, or is specified when initiating a realtime connection perRSA7e1
. The following applies to identified clients:(RSA7a1)
All operations (such as message publishing or presence) carried out by an identified client will have an implicitclientId
. The Ably service automatically updates theclientId
attribute (when empty) for allMessage
andPresenceMessage
messages received from that client. Client libraries should therefore not explicitly set theclientId
field on messages published from an identified client(RSA7a4)
When aclientId
value is provided in bothClientOptions#clientId
andClientOptions#defaultTokenParams
, theClientOptions#clientId
takes precedence and is used for all Auth operations
(RSA12)
Auth#clientId
attribute isnull
when:(RSA12a)
TheclientId
attribute of aTokenRequest
orTokenDetails
used for authentication isnull
, orConnectionDetails#clientId
isnull
following a connection to Ably. In this case, thenull
value indicates that aclientId
identity may not be assumed by this client i.e. the client is anonymous for all operations(RSA12b)
The client was instantiated without assigning a value forClientOptions#clientId
(null
), and the client has not yet authenticated or connected to Ably. In this case, thenull
value indicates that the client has not yet been able to confirm its identity, and therefore may change and become identified following later authentication or establishment of a connection with Ably
(RSA7b)
Auth#clientId
is notnull
when:(RSA7b1)
AclientId
is provided in theClientOptions
.clientId
should be a string(RSA7b2)
Token authentication is being used, and theTokenRequest
orTokenDetails
object, used for authentication, has aclientId
value that is notnull
(RSA7b3)
Following a realtime connection being established, if theCONNECTED
ProtocolMessages
contains aclientId
that is notnull
.clientId
is an attribute ofProtocolMessage#connectionDetails
within aCONNECTED
ProtocolMessage
(RSA7b4)
When a wildcard string'*'
is present in theTokenRequest
,TokenDetails
, orProtocolMessage#connectionDetails
object, then the client does not have an identity but is allowed to assume an identity when performing operations with Ably. As such,Auth#clientId
should contain the string value'*'
indicating that the current client is allowed to perform operations on behalf of anyclientId
(RSA7c)
AclientId
provided in theClientOptions
when instantiating aRestClient
must be eithernull
or a string, and cannot contain only a wildcard'*'
string value as that client ID value is reserved
(RSA8)
Auth#requestToken
function:(RSA8e)
Method signature isrequestToken(TokenParams, AuthOptions)
.TokenParams
andAuthOptions
are optional. WhenTokenParams
orAuthOptions
are provided, the values of each attribute are not merged with the configured client library defaults, but rather are used instead of the stored values (even whennull
). If the object arguments are omitted, the client library configured defaults are used(RSA8a)
Implicitly creates aTokenRequest
if required, and requests a token from Ably if required. Returns aTokenDetails
object(RSA8b)
Supports allTokenParams
in the function arguments, which override defaults forClient
Auth
(RSA8c)
WhenauthUrl
option is set, it will query the provided URL to obtain aTokenRequest
or the token itself (either a token string or aTokenDetails
). The query is performed using the given URL using the HTTP method inauthMethod
, headers (fromauthHeaders
) and supplementary params (fromauthParams
). The token retrieved is assumed by the library to be a token string if the response hasContent-Type
"text/plain"
or"application/jwt"
, or taken to be aTokenRequest
orTokenDetails
object if the response hasContent-Type
"application/json"
.authMethod
can be eitherGET
orPOST
, or if not specified, will default toGET
. It can be quite difficult to add test coverage for these scenarios – as such, we have developed a simple echo server that can be used in your tests, see the ably-js authUrl echo tests(RSA8c1)
TokenParams
and any configuredauthParams
andauthHeaders
are always sent to theauthUrl
as follows:(RSA8c1a)
When theauthMethod
isGET
or unspecified, theTokenParams
andauthParams
are merged and appended to the URL as query string params, and theauthHeaders
are sent as HTTP headers(RSA8c1b)
When theauthMethod
isPOST
, theTokenParams
andauthParams
are merged and sent form-encoded in the body of thePOST
request, and theauthHeaders
are sent as HTTP headers(RSA8c1c)
If the givenauthUrl
includes any querystring params, they should be preserved. In theGET
case,authParams
/tokenParams
should be merged with them. If a name conflict occurs,authParams
/tokenParams
should take precedence
(RSA8c2)
TokenParams
take precedence over any configuredauthParams
when a name conflict occurs(RSA8c3)
SpecifyingauthParams
orauthHeaders
as part ofAuthOptions
replaces any configuredauthParams
orauthHeaders
specified inClientOptions
respectively. As the provided key/value pairs are not merged with theClientOptions
configured key/value pairs, this enables a developer to deleteauthParams
orauthHeaders
where necessary by providing an entire new set of key/value pairs
(RSA8d)
WhenauthCallback
option is set, it will invoke the callback, passing in theTokenParams
, and expects either a token string, aTokenDetails
object or aTokenRequest
object to be returned, which will in turn be used to request a token from Ably(RSA8f)
A test should exist for the following:(RSA8f1)
Request a token with anull
valueclientId
, authenticate a client with the token, publish a message without an explicitclientId
, and ensure the message published does not have aclientId
. Check thatAuth#clientId
isnull
(RSA8f2)
Request a token with anull
valueclientId
, authenticate a client with the token, publish a message with an explicitclientId
value, and ensure that the message is rejected(RSA8f3)
Request a token with a wildcard'*'
valueclientId
, authenticate a client with the token, publish a message without an explicitclientId
, and ensure the message published does not have aclientId
. Check thatAuth#clientId
is a string with value'*'
(RSA8f4)
Request a token with a wildcard'*'
valueclientId
, authenticate a client with the token, publish a message with an explicitclientId
value, and ensure that the message published has the providedclientId
(RSA8g)
Tests must exist to verify both theauthCallback
andauthURL
mechanisms where the returned token string value is a JWT token string and an Ably token string.
(RSA9)
Auth#createTokenRequest
function:(RSA9h)
Method signature iscreateTokenRequest(TokenParams, AuthOptions)
.TokenParams
andAuthOptions
are optional.WhenTokenParams
orAuthOptions
are provided, the values of each attribute are not merged with the configured client library defaults, but rather are used instead of the stored values (even whennull
). If the object arguments are omitted, the client library configured defaults are used(RSA9a)
Returns a signedTokenRequest
object that can be used to obtain a token from Ably. This is useful for servers that can create aTokenRequest
signed with the API key without communicating with Ably directly. TheTokenRequest
can then be passed to a designated client that is then responsible for communicating with Ably and requesting a token for authentication from thatTokenRequest
(RSA9c)
Generates a unique 16+ characternonce
if none is provided; the nonce is used to protect against replay attacks(RSA9d)
Generates atimestamp
from current time if not provided, will retrieve the server time ifqueryTime
is true(RSA9e)
TTL is optional and specified in milliseconds(RSA9f)
Capability JSON text can be provided that specifies the rights of the token in terms of the channel(s) authorized and the permitted operations on each(RSA9g)
A valid HMAC is created using the key secret (using the key from the passed-inAuthOptions
if supplied) to sign theTokenRequest
so that it can be used by any client to request a token without having or exchanging any secrets(RSA9i)
Adheres to all requirements inRSA8
relating toTokenParams
(RSA10)
Auth#authorize
function:(RSA10a)
Instructs the library to create a token immediately and ensures Token Auth is used for all future requests. See RTC8 for re-authentication behavior when called for a realtime client(RSA10j)
Method signature isauthorize(TokenParams, AuthOptions)
.TokenParams
andAuthOptions
are optional. When the arguments are present, even if empty, theTokenParams
andAuthOptions
supersede any previously client library configuredTokenParams
andAuthOptions
. For example, if a client is initialized withTokenParams#ttl
configured with a custom value, and aTokenParams
object is passed in as an argument to#authorize
with anull
or missing value forttl
, then thettl
used for every subsequent authorization will benull
(RSA10b)
Supports allAuthOptions
andTokenParams
in the function arguments(RSA10k)
If theAuthOption
argument’squeryTime
attribute is true, it will obtain the server time once and persist the offset from the local clock. All future token requests generated directly or indirectly via a call toauthorize
will not obtain the server time, but instead use the local clock offset to calculate the server time. The client library itself MAY internally discard the cached local clock offset in situations in which it may have been invalidated, such as if there is a local change to the date, time, or timezone, of the client device. For clarity however, there is no requirement for this cache invalidation to be available to consumers of the client library API.(RSA10e)
If theauthOptions
contains a way of obtaining a token (anauthCallback
,authUrl
, orkey
), that should be used to obtain a new token, as perrequestToken
(RSA8
). If it contains a token (token
ortokenDetails
), that should be used as-is. If it contains both a token and a way of obtaining a token, the token should be used, with the way of obtaining a token being stored perRSA10g
for when the token expires. (Ordering of preference within those groups is not defined and is left up to individual implementations)(RSA10f)
Returns aTokenDetails
object that contains the token string + token metadata(RSA10g)
Stores theAuthOptions
andTokenParams
arguments as defaults for subsequent authorizations with the exception of the attributesTokenParams#timestamp
andAuthOptions#queryTime
(RSA10h)
Will use the value fromAuth#clientId
by default, if notnull
(RSA10i)
Adheres to all requirements inRSA8
relating toTokenParams
,authCallback
andauthUrl
(RSA10l)
Has an alias methodRestClient#authorise
andRealtimeClient#authorise
that will log a deprecation warning stating that this alias method will be removed inv1.0
and the user should instead useauthorize
(RSA16)
Auth#tokenDetails
:(RSA16a)
Holds aTokenDetails
representing the token currently in use by the library, if any;(RSA16b)
If the library is provided with a token without the correspondingTokenDetails
, then this holds aTokenDetails
instance in which only thetoken
attribute is populated with that token string(RSA16c)
Is set with the current token (if applicable) on instantiation and each time it is replaced, whether the result of an explicitAuth#authorize
operation, or a library-initiated renewal resulting from expiry or a token error response(RSA16d)
Isnull
if there is no current token, including after a previous token has been determined to be invalid or expired, or if the library is using basic auth
(RSA17)
Auth#revokeTokens
function:(RSA17a)
This clause has been replaced byRSA17g
. It was valid up to and including specification version2.1
.(RSA17g)
Takes aTokenRevocationTargetSpecifier
or an array of @TokenRevocationTargetSpecifier@s and sends them in a POST request to /keys/{API_KEY_NAME}/revokeTokens, whereAPI_KEY_NAME
is the API key name obtained by readingAuthOptions#key
up until the first:
character.(RSA17b)
The @TokenRevocationTargetSpecifier@s should be mapped to strings by joining thetype
andvalue
with a “:” character and sent in thetargets
field of the request body(RSA17c)
Returns aBatchResult<TokenRevocationSuccessResult | TokenRevocationFailureResult>
s.(RSA17d)
If called from a client using token authentication, should raise anErrorInfo
with a40162
error code and401
status code(RSA17e)
Accepts an optionalissuedBefore
timestamp, represented as milliseconds since the epoch, or a `Time` object if idiomatic to the language(RSA17f)
If anallowReauthMargin
boolean is supplied, it should be included in theallowReauthMargin
field of the request body
(RSN1)
Channels
is a collection ofRestChannel
objects accessible throughRestClient#channels
(RSN2)
Methods should exist to check if a channel exists or iterate through the existing channels(RSN3)
Channels#get
function:(RSN3a)
Creates a newRestChannel
object for the specified channel if none exists, or returns the existing channel.ChannelOptions
can be provided in an optional second argument(RSN3b)
If options are provided, the options are set on theRestChannel
(RSN3c)
Accessing an existingRestChannel
with options in the formChannels#get(channel, options)
will update the options on the channel and then return the existingRestChannel
object. (Note that this is soft-deprecated and may be removed in a future release, so should not be implemented in new client libraries. The supported way to update a set ofChannelOptions
isRestChannel#setOptions
)
(RSN4)
Channels#release
function:(RSN4a)
Takes one argument, the channel name, and releases the corresponding channel entity (that is, deletes it to allow it to be garbage collected)(RSN4b)
Callingrelease()
with a channel name that does not correspond to an extant channel entity must return without error(RSN4c)
This clause has been deleted.
(RSL9)
RestChannel#name
attribute is a string containing the channel’s name(RSL1)
RestChannel#publish
function:(RSL1a)
Expects either aMessage
object, an array ofMessage
objects, or aname
string anddata
payload(RSL1b)
Whenname
anddata
(or aMessage
) is provided, a single message is published to Ably(RSL1c)
When an array ofMessage
objects is provided, a single request is made to Ably(RSL1d)
Indicates an error if the message was not successfully published to Ably(RSL1e)
Allowsname
and/ordata
to benull
. If any of the values arenull
, that property is not sent to Ably, e.g. a payload with anull
value fordata
would be sent as{"name":"click"}
(RSL1m)
TheMessage.clientId
must be left alone (that is, it will be there if it was set in theMessage
object passed topublish()
, else left unset). The client library must not try and set it from the client-library-wideclientId
; that is achieved byRSA7e
for basic auth or implicit in the credentials for token auth. The following tests can be used to check for correct clientId handling:(RSL1m1)
Publishing aMessage
with no clientId when the clientId is set to some value in the client options should result in a message received with theclientId
property set to that value(RSL1m2)
Publishing aMessage
with a clientId set to the same value as the clientId in the client options should result in a message received with theclientId
property set to that value(RSL1m3)
Publishing aMessage
with a clientId set to a value from an unidentified client (no clientId in the client options and credentials that can assume any clientId) should result in a message received with theclientId
property set to that value(RSL1m4)
Publishing aMessage
with a clientId set to a different value from the clientId in the client options should result in a message being rejected by the server
(RSL1h)
Thepublish(name, data)
form should not take any additional arguments. If a client library has supported additional arguments to the(name, data)
form (e.g. separate arguments forclientId
andextras
, or a singleattributes
argument) in any 1.x version, it should continue to do so until version 2.0.(RSL1i)
If the total size of the message or (if publishing an array) messages, calculated per TO3l8, exceeds themaxMessageSize
, then the client library should reject the publish and indicate an error with code 40009(RSL1j)
WhenMessage
objects are provided, any validMessage
attribute (that is, an attribute specified in TM2) that is supplied by the caller must be included in the encoded message. (This does not mean it must be included unaltered; for example thedata
andencoding
will be subject to processing per RSL4)(RSL1k)
Idempotent publishing via REST is supported by populating theid
attribute ofMessage
instances passed topublish()
:(RSL1k1)
Idempotent publishing via library-generatedMessage
id
s is supported ifidempotentRestPublishing
(see TO3n) is enabled and one or moreMessage
instances are passed topublish()
and allMessage
s have an emptyid
attribute. The library generates a baseid
string by base64-encoding a sequence of at least 9 bytes obtained from a source of randomness. Each individualMessage
in the set of messages to be published is assigned a uniqueid
of the form <base id>:<serial> (whereserial
is the zero-based index into the set).(RSL1k2)
Idempotent publishing via client-suppliedMessage
id
s is supported where a singleMessage
is passed topublish()
and it contains a non-emptyid
. Theid
is preserved on sending the message.(RSL1k3)
If more than oneMessage
is passed topublish()
and one or more of those messages contains a non-emptyid
attribute, then all message ids (present or absent) are preserved on sending the batch of messages.(RSL1k4)
An explicit test for idempotency of publishes with library-generated ids shall exist that simulates an error response to a successful publish of a batch of messages, expects an automatic retry by the library, and verifies that the net outcome is that the batch is published only once.(RSL1k5)
An explicit test for idempotency of publishes with client-supplied ids shall exist that involves multiple explicit publish requests for a given message and verifies that the net outcome is that the message is published only once.
(RSL1l)
Thepublish(Message)
andpublish(Message[])
forms of the method should take an extraDict<String, Stringifiable>
argument. These parameters should be encoded using normal querystring-encoding and sent as part of the query string of the REST publish. (Stringifiable
is defined inRTC1f
)(RSL1l1)
Publish params can be tested by publishing with a_forceNack=true
parameter, which will result in the publish being rejected with a40099
error code
(RSL2)
RestChannel#history
function:(RSL2a)
Returns aPaginatedResult
page containing the first page of messages in thePaginatedResult#items
attribute returned from the history request(RSL2b)
Supports the following params:(RSL2b1)
start
andend
are timestamp fields represented as milliseconds since epoch, or where suitable to the language, Time objects.start
must be equal to or less thanend
and is unaffected by the request direction(RSL2b2)
direction
backwards or forwards; if omitted the direction defaults to the REST API default (backwards)(RSL2b3)
limit
supports up to 1,000 items; if omitted the direction defaults to the REST API default (100)
(RSL3)
RestChannel#presence
attribute contains aRestPresence
object for this channel(RSL4)
Message encoding(RSL4a)
Payloads must be binary, strings, or objects capable of JSON representation, or can be empty (omitted). Any other data type should not be permitted and result in an error(RSL4b)
If a message is encoded, theencoding
attribute represents the encoding(s) applied in right to left format i.e. “utf-8/base64” indicates that the original payload has “utf-8” encoding and has subsequently been encoded in Base64 format(RSL4c)
When using MessagePack Message encoding(RSL4c1)
a binary Message payload is encoded as MessagePack binary type(RSL4c2)
a string Message payload is encoded as MessagePack string type(RSL4c3)
a JSON Message payload is stringified either as a JSON Object or Array and encoded as MessagePack string type and theencoding
attribute is set to “json”(RSL4c4)
All messages received will deliver payloads in the format they were sent in i.e. binary, string, or a structured type containing the parsed JSON
(RSL4d)
When using JSON Message encoding(RSL4d1)
a binary Message payload is encoded as Base64 and represented as a JSON string theencoding
attribute is set to “base64”(RSL4d2)
a string Message payload is represented as a JSON string(RSL4d3)
a JSON Message payload is stringified either as a JSON Object or Array and represented as a JSON string and theencoding
attribute is set to “json”(RSL4d4)
All messages received will be decoded based on theencoding
field and deliver payloads in the format they were sent in i.e. binary, string, or a structured type containing the parsed JSON
(RSL5)
Message payload encryption(RSL5a)
When aRestChannel
is instantiated with a (non-null)cipher
channelOption, message payloads will be automatically encrypted when sent to Ably and decrypted when received on this channel, using thecipher
configuration(RSL5b)
AES 256 and 128 CBC encryption must be supported(RSL5c)
Tests must exist that encrypt and decrypt the following fixture data for AES 128 and AES 256 to ensure the client library encryption is compatible across libraries
(RSL6)
Message decoding(RSL6a)
All messages received will be decoded automatically based on theencoding
field and the payloads will be converted into the format they were originally sent using i.e. binary, string, or JSON(RSL6a1)
A set of tests must exist to ensure that the client library provides data encoding & decoding interoperability with other client libraries. The tests must use the set of predefined interoperability message fixtures to 1) publish a raw message to the REST API using the JSON transport and subscribe to the message using Realtime to ensure thedata
attribute matches the fixture; 2) publish a message using the REST client library and retrieve the raw message using the history REST API using the JSON transport ensuring thedata
matches the fixture; 3) perform the client library operation using bothJSON
andMsgPack
transports. For reference, see the Ruby and iOS implementations(RSL6a2)
A set of tests must exist to ensure that the client library provides interoperability for theextras
field which is a JSON-encodable object (ie a value that represents a JSONobject
value and supports serialization to and from JSON text). The test, at a minimum, should publish a message with anextras
object such as{"push":[{"title":"Testing"}]}
and ensure it is received with an equivalent JSON-encodable object
(RSL6b)
If, for example, incompatible encryption details are provided or invalid Base64 is detected in the message payload, an error message will be sent to the logger, but the message will still be delivered with last successful decoding and theencoding
field. For example, if a message had a decoding of “utf-8/cipher+aes-128-cbc/base64”, and the payload was successfully Base64 decoded but the payload could not be decrypted because theCipherParam
details were not configured, the message would be delivered with a binary payload and anencoding
with the value “utf-8/cipher+aes-128-cbc”. Additional steps need to be taken if decoding failed on “vcdiff” encoding; see RTL18
(RSL7)
RestChannel#setOptions
takes aChannelOptions
object and sets or updates the stored channel options, then indicates success(RSL8)
RestChannel#status
function: makes a http get request to<restHost>/channels/<channelId>
where<restHost>
represents the current rest host as described byRSC11
(RSL8a)
Returns aChannelDetails
object
(PC1)
Specific client library features that are not commonly used may be supplied as independent libraries, as plugins, in order to avoid excessively bloating the client library. Although such plugins are packaged as independent libraries, they are still considered logically to be part of the client library code and, as such, may be tightly coupled with the client library implementation. The client library can be assumed to be aware of the plugin specific type and capabilities, and such plugins may by design be coupled to a specific version of the client library.(PC2)
No generic plugin interface is specified, and therefore there is no common API exposed by all plugins. However, for type-safety, the opaque interfacePlugin
should be used in strongly-typed languages as the type of theClientOptions.plugins
collection as per TO3o.(PC3)
A plugin provided with thePluginType
enum key value ofvcdiff
should be capable of decoding “vcdiff”-encoded messages. It must implement theVCDiffDecoder
interface and the client library must be able to use it by casting it to this interface.(PC3a)
The base argument of theVCDiffDecoder.decode
method should receive the stored base payload of the last message on a channel as specified by RTL19. If the base payload is a string it should be encoded to binary using UTF-8 before being passed as base argument of theVCDiffDecoder.decode
method.
(PC4)
A client library is allowed to accept plugins other than those specified in this specification, through the use of additionalClientOptions.plugins
keys defined by that library. The library is responsible for defining the interface of these plugins, and for making sure that these keys do not clash with the keys defined in this specification.
(PT1)
PluginType
is an enum describing the different types of plugins that the library supports. See theClientOptions#plugins
property (TO3o).(PT2)
PluginType
takes one of the following values:(PT2a)
vcdiff
– see PC3.
(VD1)
VCDiffDecoder
provides an interface for decoding “vcdiff”-encoded message payloads.(VD2)
VCDiffDecoder
has the following interface:(VD2a)
class methoddecode([byte] delta, [byte] base) -> [byte]
– as described by PC3a, given a base payload and the delta provided by a subsequent message, this returns the payload of that message
(RSP1)
RestPresence object is associated with a single channel and is accessible throughRestChannel#presence
(RSP2)
There is no way to register a member as present on a channel via the REST API(RSP3)
RestPresence#get
function:(RSP3a)
Returns aPaginatedResult
page containing the first page of members present in thePaginatedResult#items
attribute returned from the presence request. Each member is represented as aPresenceMessage
. Supports the following params:(RSP3a1)
limit
supports up to 1,000 items; if unspecified it defaults to the REST API default (100)(RSP3a2)
clientId
filters members by the providedclientId
(RSP3a3)
connectionId
filters members by the providedconnectionId
(RSP4)
RestPresence#history
function:(RSP4a)
Returns aPaginatedResult
page containing the first page of messages in thePaginatedResult#items
attribute returned from the presence request(RSP4b)
Supports the following params:(RSP4b1)
start
andend
are timestamp fields represented as milliseconds since epoch, or where appropriate to the language, Date/Time objects.start
must be equal to or less thanend
and is unaffected by the request direction(RSP4b2)
direction
backwards or forwards; if unspecified defaults to the REST API default (backwards)(RSP4b3)
limit
supports up to 1,000 items; if unspecified defaults to the REST API default (100)
(RSP5)
Presence Messages retrieved are decoded in the same way that messages are decoded
(RSE1)
Crypto::getDefaultParams
function:(RSE1a)
Returns a completeCipherParams
instance, using the default values for any field not supplied(RSE1b)
Takes aCipherParamOptions
instance.(RSE1c)
Thekey
must be either a binary (e.g. a byte array, depending on the language), or a base64-encoded string. If the key is a string, the function should base64-decode it into a binary. Since the conversion to base64 is not under Ably control, this should be done leniently — in particular, it should work with base64url (RFC 4648 s.5, which uses-
and_
instead of+
and/
) as well as base64 (RFC 4648 s.4)(RSE1d)
Calculates akeyLength
from the key (its size in bits).(RSE1e)
Checks that the provided options are valid and self-consistent as best it can, raises an exception if not. At a minimum, this should include checking the calculatedkeyLength
is a valid key length for the encryption algorithm (for example, 128 or 256 forAES
)
(RSE2)
Crypto::generateRandomKey
function(RSE2a)
Takes an optionalkeyLength
parameter, which is the length in bits of the key to be generated. If unspecified, this is equal to the defaultkeyLength
of the default algorithm: forAES
, 256 bits.(RSE2b)
Returns (or calls back with, if the language cryptographic randomness primitives are blocking or async) the key as a binary (e.g. a byte array, depending on the language)
(RSF1)
The library must apply the robustness principle in its processing of requests and responses with the Ably system. In particular, deserialization of Messages and related types, and associated enums, must be tolerant to unrecognised attributes or enum values. Such unrecognised values must be ignored.
The Ably Realtime client libraries establish and maintain a persistent connection to Ably and provide methods to publish and subscribe to messages over a low latency realtime connection.
The Realtime library is a super-set of the REST library and as such all Realtime libraries provide the functionality available in the REST library in addition to Realtime-specific features.
The threading and/or asynchronous model for each realtime library will vary by language and it is therefore up to the developer to decide on the best approach for each given client library. For example, Node.js and Ruby (EventMachine) use a similar callback single threaded evented approach that ensures all public methods are non-blocking. Java and .NET use a threaded model whereby the Connection
runs in its own thread. Go makes extensive use of goroutines and channels.
(RTC12)
Has the same constructors asRestClient
, as defined in RSC1(RTC1)
Supports all the sameClientOptions
as theRestClient
in addition to:(RTC1a)
echoMessages
boolean is true by default. If false, it prevents messages originating from this connection being echoed back on the same connection; see RTN2b.(RTC1b)
autoConnect
boolean is true by default. If true, as soon as the client library is instantiated, it will connect to Ably. If false, the client library will wait for an explicitConnection#connect
to be called before connecting(RTC1c)
recover
string, when set, will attempt to recover the connection state of a previous connection(RTC1d)
realtimeHost
string, when set, will modify the realtime endpoint host used by this client library(RTC1e)
environment
string, when set to a value other than “production”, use[environment]-rest.ably.io
as the REST endpoint and[environment]-realtime.ably.io
as the realtime endpoint. For example, aRealtimeClient
with anenvironment
of “sandbox” would use “sandbox-rest.ably.io” as the REST endpoint andsandbox-realtime.ably.io
as the realtime endpoint. See TO3k3 for constraints.(RTC1f)
transportParams
map or equivalent, additional parameters to be sent in the querystring when initiating a realtime connection. Keys areStrings
, values areStringifiable
(a value that can be coerced to a string in order to be sent as a querystring parameter. Supported values should be at least strings, numbers, and booleans, with booleans stringified astrue
andfalse
. If this is unidiomatic to the language, the implementer may consider this as equivalent toString
).(RTC1f1)
If a key intransportParams
is one the library sends by default (for example,v
orheartbeats
), the value intransportParams
takes precedence.
(RTC2)
RealtimeClient#connection
attribute provides access to the underlyingConnection
object(RTC15)
RealtimeClient#connect
function:(RTC15a)
Calls#connect
on the underlyingConnection
object
(RTC16)
RealtimeClient#close
function:(RTC16a)
Calls#close
on the underlyingConnection
object
(RTC3)
RealtimeClient#channels
attribute provides access to the underlyingChannels
object(RTC4)
RealtimeClient#auth
attribute provides access to theAuth
object that was instantiated with theClientOptions
provided in theRealtimeClient
constructor(RTC5)
RealtimeClient#stats
function:(RTC5a)
Proxy toRestClient#stats
presented with an async or threaded interface as appropriate(RTC5b)
Accepts all the same params asRestClient#stats
and provides all the same functionality
(RTC6)
RealtimeClient#time
function:(RTC6a)
Proxy toRestClient#time
presented with an async or threaded interface as appropriate
(RTC13)
RealtimeClient#push
attribute provides access to thePush
object that was instantiated with theClientOptions
provided in theRealtimeClient
constructor(RTC7)
The client library must use the configured timeouts specified in theClientOptions
, falling back to the client library defaults and defaults described inClientOptions
below(RTC8)
For a realtime client,Auth#authorize
instructs the library to obtain a token using the providedtokenParams
andauthOptions
and alter the current connection to use that token; or if not currently connected, to connect with the token.(RTC8a)
If the connection is in theCONNECTED
state andauth#authorize
is called or Ably requests a re-authentication (see RTN22), the client must obtain a new token, then send anAUTH
ProtocolMessage
to Ably with anauth
attribute containing anAuthDetails
object with the token string(RTC8a1)
If the authentication token change is successful, then Ably will send a newCONNECTED
ProtocolMessage
. TheconnectionDetails
provided in theCONNECTED
ProtocolMessage
must override any existing defaults, see RTN21. TheConnection
should emit anUPDATE
event perRTN24
. A test should exist that performs a change of capabilities without any loss of continuity or connectivity during the process. Another test should exist where the capabilities are downgraded resulting in Ably sending anERROR
ProtocolMessage
with achannel
property, causing the channel to enter theFAILED
state. That test must assert that the channel becomes failed soon after the token update and the reason is included in the channel state change event(RTC8a2)
If the authentication token change fails, then Ably will send anERROR
ProtocolMessage
triggering the connection to transition to theFAILED
state. A test should exist for a token change that fails (such as sending a new token with an incompatibleclientId
)(RTC8a3)
Theauthorize
call should be indicated as completed with the new token or error only once realtime has responded to theAUTH
with either aCONNECTED
orERROR
respectively.(RTC8a4)
Tests must exist that verify the inband reauthorization mechanism described inRTC8a
succeeds in the cases of an Ably token string and a JWT token string.
(RTC8b)
If the connection is in theCONNECTING
state whenauth#authorize
is called, all current connection attempts should be halted, and after obtaining a new token the library should immediately initiate a connection attempt using the new token(RTC8b1)
Theauthorize
call should be indicated as completed with the new token once the connection has moved to theCONNECTED
state, or with an error if the connection instead moves to theFAILED
,SUSPENDED
, orCLOSED
states
(RTC8c)
If the connection is in theDISCONNECTED
,SUSPENDED
,FAILED
, orCLOSED
state whenauth#authorize
is called, after obtaining a token the library should move to theCONNECTING
state and initiate a connection attempt using the new token, andRTC8b1
applies.
(RTC9)
RealtimeClient#request
is a wrapper aroundRestClient#request
(see RSC19) delivered in an idiomatic way for the realtime library, e.g. in the case of Ruby, with an evented async callback interface(RTC17)
RealtimeClient#clientId
attribute:(RTC17a)
Returns the current value of the#clientId
attribute of theRealtimeClient
object’s#auth
attribute
(RTC10)
The client library should never register any listeners for internal use with the publicEventEmitter
interfaces (such asConnection#on
) or message/event subscription interfaces (such asRealtimeChannel#subscribe
) in such a way that a user of the library callingConnection#off()
orRealtimeChannel#unsubscribe()
to remove all listeners would result in the library not working as expected(RTC11)
Unexpected internal exceptions, as defined inRSC20
, must be handled as gracefully as possible and reported to Ably’s error reporting service when enabled. The aim when handling unexpected exceptions should be to ensure that no invalid or inconsistent state can potentially be left after handling the exception; depending on circumstances the remedial action could include failing the transport, failing the connection, rejecting a message, reinitialising the library completely, etc.
(RTN1)
Connection
connects to the Ably service using a websocket connection. The ably-js library supports additional transports such as Comet and XHR streaming; however non-browser client libraries typically use only a websocket transport(RTN2)
The default host used for realtime websocket connections isrealtime.ably.io
, and the following query string params should be used when opening a new connection:(RTN2a)
format
should bemsgpack
(default) orjson
(RTN2b)
echo
should betrue
if theechoMessages
client option is true; else it should befalse
, which will prevent messages published by the client being echoed back(RTN2d)
clientId
contains the providedclientId
option ofClientOptions
, unlessclientId
isnull
(RTN2e)
Depending on the authentication scheme, eitheraccessToken
contains the token string, orkey
contains the API key(RTN2f)
The API version paramv
must be included in all connections to Ably endpoints. The value to be sent is defined byCSV2
.(RTN2g)
The library and version (in the form described in RSC7b) should be included as the value of alib
querystring param. For example, the 1.0.0 version of the JavaScript library would use the paramlib=js-1.0.0
(RTN3)
If connection optionautoConnect
is true, a connection is initiated immediately; otherwise a connection is only initiated following an explicit call toconnect()
(RTN27)
The Connection is a state machine and implements the following states, which are mutually exclusive and exhaustive:(RTN27a)
INITIALIZED
– the initial state of the connection. The library never transitions back toINITIALIZED
from any other state.(RTN27b)
CONNECTING
– the state whenever the library is actively attempting to connect to the server (whether trying to obtain a token, trying to open a transport, or waiting for aCONNECTED
event).(RTN27c)
DISCONNECTED
– a state where the library is not connected to the server and is not actively attempting to become connected, but where a reconnect attempt is scheduled in the future after theTO3l1
disconnectedRetryTimeout
elapses, and where if the library was previously connected, the next connect attempt will be anRTN15b
resume attempt.(RTN27d)
SUSPENDED
– a state where the library is not connected to the server and is not actively attempting to become connected, but where a reconnect attempt is scheduled in the future after theTO3l2
suspendedRetryTimeout
elapses, and where next connect attempt is a clean connection (not a resume attempt).(RTN27e)
CONNECTED
– the state whenever the library is connected to the server (there is a transport currently active which has received aCONNECTED
ProtocolMessage
).(RTN27f)
CLOSING
– the state when the user has requested the libraryclose()
, and the library is waiting for aCLOSE
to be received on the active transport.(RTN27g)
CLOSED
– the state when the library has been explicitly closed by the user, and there is no active transport.(RTN27h)
FAILED
– the state when the library has encountered a failure condition it cannot recover from. It will remain in this state indefinitely, unless and until an explicit call toconnect()
is made.
(RTN4)
TheConnection
implementsEventEmitter
and emitsConnectionEvent
events, where aConnectionEvent
is either aConnectionState
orUPDATE
, and aConnectionState
is eitherINITIALIZED
,CONNECTING
,CONNECTED
,DISCONNECTED
,SUSPENDED
,CLOSING
,CLOSED
, orFAILED
(RTN4a)
It emits aConnectionState
ConnectionEvent
for every connection state change(RTN4h)
It emits anUPDATE
ConnectionEvent
for changes to connection conditions for which theConnectionState
(e.g.CONNECTED
) does not change. (The library must never emit aConnectionState
ConnectionEvent
for a state equal to the previous state)(RTN4b)
A new connection will emit the following events in order when connecting:CONNECTING
, thenCONNECTED
(RTN4c)
A connection will emit the following events when closing the connection:CLOSING
, thenCLOSED
(RTN4d)
Connection#state
attribute is the current state of the connection(RTN4e)
AConnectionStateChange
object is emitted as the first argument for everyConnectionEvent
(including bothRTN4a
connection state changes andRTL4h
UPDATE
events)(RTN4f)
TheConnectionStateChange
object may contain areason
consisting of anErrorInfo
object with details of the error that has occurred for theConnection
. Any state change triggered by aProtocolMessage
that contains anerror
member should populate thereason
with that error in the corresponding state change event(RTN4i)
Optionally, for backwards compatibility with 0.8 libraries, theConnection
EventEmitter
can provide an overloaded method that supportson(ConnectionState)
, but must issue a deprecation warning
(RTN5)
A test should exist that instantiates many (50+) clients simultaneously and performs a few basic operations such as attaching to a channel, publishing a message, and expecting all of those messages to arrive on all clients to ensure that there are no concurrency issues with the client library(RTN6)
AConnection
is successful and consideredCONNECTED
once the websocket connection is open and the initialCONNECTED
ProtocolMessage
has been received(RTN21)
If theCONNECTED
ProtocolMessage
contains aconnectionDetails
property, the attributes withinConnectionDetails
will be used as the defaults for this client library, overriding any configured options at the time theCONNECTED
ProtocolMessage
is received(RTN7)
ACK
andNACK
:(RTN7a)
AllProtocolMessage
Presence
andMessage
objects sent to Ably expect either anACK
orNACK
from Ably to confirm successful receipt and acceptance or failure respectively. For clarity, it is unnecessary to fail the publish operation of a message using a timer. Instead the client library can rely on: the realtime system will send anACK
orNACK
when connected; the client library will fail all awaiting messages onceSUSPENDED
(see RTN7c); upon reconnecting, the client will resend all message awaiting a response, and the realtime system in turn will respond with anACK
orNACK
(see RTN19a)(RTN7b)
EveryProtocolMessage
that expects anACK
orNACK
sent must contain a unique serially incrementingmsgSerial
integer value starting at zero. ThemsgSerial
along with thecount
for incomingACK
andNACK
ProtocolMessages
indicates which messages succeeded or failed to be delivered(RTN7c)
If a connection enters theSUSPENDED
,CLOSED
orFAILED
state, or if the connection state is lost, and anACK
orNACK
has not yet been received for a message, the client should consider the delivery of those messages as failed, meaning their callback (or language equivalent) should be called with an error representing the reason for the state change, and they should be removed from anyRTN9a
retry queue(RTN7d)
If thequeueMessages
client option (TO3g
) has been set tofalse
, then when a connection enters theDISCONNECTED
state, any messages which have not yet been @ACK@d should be considered to have failed, with the same effect as inRTN7c
(RTN22)
Ably can request that a connected client re-authenticates by sending the client anAUTH
ProtocolMessage
. The client must then immediately start a new authentication process as described in RTC8(RTN22a)
Ably reserves the right to forcibly disconnect a client that does not re-authenticate within an acceptable period of time, or at any time the token is deemed no longer valid. A client is forcibly disconnected following aDISCONNECTED
message containing an error code in the range40140 <= code < 40150
. This will in effect force the client to re-authenticate and resume the connection immediately, see RTN15h
(RTN8)
Connection#id
attribute:(RTN8a)
Is unset until connected(RTN8b)
Is a unique string provided by Ably. You should have a test to ensure multiple connected clients have unique connection IDs(RTN8c)
IsNull
when the SDK is in theCLOSED
,CLOSING
,FAILED
, orSUSPENDED
states
(RTN9)
Connection#key
attribute:(RTN9a)
Is unset until connected(RTN9b)
Is a unique private connection key provided by Ably that is used to reconnect and retain connection state following an unexpected disconnection. You should have a test to ensure multiple connected clients have unique connection keys(RTN9c)
IsNull
when the SDK is in theCLOSED
,CLOSING
,FAILED
, orSUSPENDED
states
(RTN10)
This clause has been deleted. It was valid up to and including specification version1.2
.(RTN11)
Connection#connect
function:(RTN11a)
Explicitly connects to the Ably service if not already connected(RTN11b)
If the state isCLOSING
, the client should make a new connection with a new transport instance and remove all references to the old one. In particular, it should make sure that, when theCLOSED
ProtocolMessage
arrives for the old connection, it doesn’t affect the new one.(RTN11c)
If the state isDISCONNECTED
orSUSPENDED
, skips the ongoing wait in the retry process described in RTN14d and RTN14e, so that the next reconnection attempt happens immediately.(RTN11d)
If the state isCLOSED
orFAILED
, transitions all the channels toINITIALIZED
and unsets theirRealtimeChannel.errorReason
, unsets theConnection.errorReason
, clears all connection state (including in particularConnection.recoveryKey
), and resets themsgSerial
to0
(RTN12)
Connection#close
function:(RTN12f)
If the connection state isCONNECTING
, moves immediately toCLOSING
. If the connection attempt succeeds, ie. aCONNECTED
ProtocolMessage
arrives from Ably, then do as specified in RTN12a. If it doesn’t succeed, move toCLOSED
.(RTN12a)
If the connection state isCONNECTED
, sends aCLOSE
ProtocolMessage
to the server, transitions the state toCLOSING
and waits for aCLOSED
ProtocolMessage
to be received(RTN12b)
If theCLOSED
ProtocolMessage
is not received within the default realtime request timeout, the transport will be disconnected and the connection will automatically transition to theCLOSED
state(RTN12c)
If the transport is abruptly closed following aCLOSE
ProtocolMessage
being sent, then the connection will automatically transition to theCLOSED
state(RTN12d)
If the connection state isDISCONNECTED
orSUSPENDED
, aborts the retry process described in RTN14d and RTN14e and transitions the connection immediately to theCLOSED
state
(RTN13)
Connection#ping
function:(RTN13d)
If the connection state isCONNECTING
orDISCONNECTED
, do the operation once the connection state isCONNECTED
(RTN13a)
Will send aProtocolMessage
with actionHEARTBEAT
the Ably service when connected and expects aHEARTBEAT
message in response. If the client library language supports callbacks, then the callback will be called with the response time or error(RTN13b)
Will indicate an error if in, or has transitioned to, theINITIALIZED
,SUSPENDED
,CLOSING
,CLOSED
orFAILED
state(RTN13c)
Will fail if aHEARTBEAT
ProtocolMessage
is not received within the default realtime request timeout(RTN13e)
TheProtocolMessage
sent should include anid
property, with value a random string. If so, only aHEARTBEAT
response which includes anid
property with the same value should be considered a response to that ping, in order to disambiguate from normal heartbeats and other pings.
(RTN14)
Connection
opening failures:(RTN14a)
If an API key is invalid, then the connection will transition to theFAILED
state and theConnection#errorReason
will be set on theConnection
object as well as the emittedConnectionStateChange
(RTN14b)
If a connection request fails due to anERROR
ProtocolMessage
being received by the client containing a token error (statusCode
value of 401 and errorcode
value in the range40140 <= code < 40150
) and an emptychannel
attribute, then if the token is renewable, a single attempt to create a new token should be made and a new connection attempt initiated using the newly created token. If the attempt to create a new token fails, or the subsequent connection attempt fails due to another token error, then the connection will transition to theDISCONNECTED
state, and theConnection#errorReason
should be set. (If no means to renew the token is provided,RSA4a
applies)(RTN14g)
If anERROR
ProtocolMessage
with an emptychannel
attribute is received for any reason other than RTN14b, then the connection will transition to theFAILED
state and the server will terminate the connection. Additionally theConnection#errorReason
must be set with the error from theERROR
ProtocolMessage
(RTN14c)
A new connection attempt will fail if not connected within the default realtime request timeout(RTN14d)
If a connection attempt fails for any recoverable reason (i.e. a network failure, a timeout such as RTN14c, or a disconnected response, other than a token failure RTN14b), theConnection#state
will transition toDISCONNECTED
, theConnection#errorReason
will be updated, aConnectionStateChange
with thereason
will be emitted, and new connection attempts will periodically be made until the maximum time in that state threshold is reached. TheretryIn
attribute of theConnectionStateChange
object will contain the time in milliseconds until the next connection attempt.retryIn
should be calculated as described inRTB1
. Each time a new connection attempt is made the state will transition toCONNECTING
and then toCONNECTED
if successful, orDISCONNECTED
if unsuccessful and the defaultconnectionStateTtl
has not been exceeded. Fallback hosts are used for new connection attempts in accordance with RTN17.(RTN14e)
Once the connection state has been in theDISCONNECTED
state for more than the defaultconnectionStateTtl
, the state will change toSUSPENDED
and be emitted with thereason
, and theConnection#errorReason
will be updated. In this state, a new connection attempt will be made periodically as specified withinsuspendedRetryTimeout
ofClientOptions
(RTN14f)
The connection will remain in theSUSPENDED
state indefinitely, whilst periodically attempting to reestablish a connection
(RTN15)
Connection
failures onceCONNECTED
:(RTN15h)
If aDISCONNECTED
message is received from Ably, then that transport will subsequently be closed by Ably(RTN15h1)
If theDISCONNECTED
message contains a token error (statusCode
value of 401 and errorcode
value in the range40140 <= code < 40150
) and the library does not have a means to renew the token, the connection will transition to theFAILED
state and theConnection#errorReason
will be set(RTN15h2)
If theDISCONNECTED
message contains a token error (statusCode
value of 401 and errorcode
value in the range40140 <= code < 40150
) and the library has the means to renew the token, the library must initiate an immediate reconnect attempt, by transitioning to theCONNECTING
state, making an attempt to obtain a new token, and initiating anRTN15b
resume attempt to the server using that token. If the token creation fails or the next connection attempt fails due to a token error, the connection must transition to theDISCONNECTED
state and set theConnection#errorReason
.(RTN15h2i)
The library MAY briefly transition through theDISCONNECTED
state on its way from theCONNECTED
toCONNECTING
. (There is no need for an SDK need to implement this behaviour if it is not already present).
(RTN15h3)
If theDISCONNECTED
message contains an error other than a token error, the library must initiate an immediate reconnect attempt, by transitioning into theCONNECTING
state and initiating anRTN15b
resume attempt.
(RTN15i)
If anERROR
ProtocolMessage
is received, this indicates a fatal error in the connection. The server will close the transport immediately after. The client should transition to theFAILED
state triggering all attached channels to transition to theFAILED
state as well. Additionally theConnection#errorReason
should be set with the error received from Ably(RTN15a)
If a transport is disconnected unexpectedly (without having received aDISCONNECTED
orERROR
protocol message), it should respond as if it had received a non-tokenDISCONNECTED
(followingRTN15h3
).(RTN15g)
Connection state is only maintained server-side for a brief period, given by theconnectionStateTtl
in theconnectionDetails
, see CD2f. If a client has been disconnected for longer than theconnectionStateTtl
, it should not attempt to resume. Instead, it should clear the local connection state, and any connection attempts should be made as for a fresh connection(RTN15g1)
This check should be made before each connection attempt. It is generally not sufficient to merely clear the connection state when moving toSUSPENDED
state (though that may be done too), since the device may have been sleeping / suspended, in which case it may have been many hours since it was last actually connected, even though, having been in theCONNECTED
state when it was put to sleep, it has only moved out of that state very recently (after waking up and noticing it’s no longer connected)(RTN15g2)
Another consequence of that is that the measure of whether the client been disconnected for too long (for the purpose of this check) cannot just be whether the client left theCONNECTED
state more thanconnectionStateTtl
ago. Instead, it should be whether the difference between the current time and the last activity time is greater than the sum of theconnectionStateTtl
and themaxIdleInterval
, where the last activity time is the time of the last known actual sign of activity from Ably per RTN23a(RTN15g3)
When a connection attempt succeeds after the connection state has been cleared in this way, channels that were previouslyATTACHED
,ATTACHING
, orSUSPENDED
must be automatically reattached, just as if the connection was a resume attempt which failed per RTN15c7
(RTN15b)
In order for a connection to be resumed and connection state to be recovered, the client must have received aCONNECTED
ProtocolMessage which will include a private connection key. To resume that connection, the library reconnects to the websocket endpoint with an additional querystring param:(RTN15b1)
resume
is theProtocolMessage#connectionKey
from the most recentCONNECTED
ProtocolMessage
received(RTN15b2)
This clause has been deleted. It was valid up to and including specification version1.2
.
(RTN15c)
The system’s response to a resume request will be one of the following:(RTN15c6)
ACONNECTED
ProtocolMessage
with the sameconnectionId
as the current client (and noerror
property). This indicates that the resume attempt was valid. The client library should then followRTL3d
as normal.(RTN15c7)
CONNECTED
ProtocolMessage
with a newconnectionId
and anErrorInfo
in theerror
field. In this case, the resume was invalid, and the error indicates the cause. Theerror
should be set as thereason
in theCONNECTED
event, and as theConnection#errorReason
. The internalmsgSerial
counter should be reset so that the first message published to Ably will contain amsgSerial
of0
. The client library should then followRTL3d
as normal.(RTN15c5)
ERROR
ProtocolMessage
indicating a failure to authenticate as a result of a token error (see RTN15h). The transport will be closed by the server. The spec described in RTN15h must be followed for a connection being resumed with a token error(RTN15c4)
Any otherERROR
ProtocolMessage
indicating a fatal error in the connection. The server will close the transport immediately after. The client should transition to theFAILED
state triggering all attached channels to transition to theFAILED
state as well. Additionally theConnection#errorReason
will be set should be set with the error received from Ably(RTN15c1)
This clause has been replaced byRTN15c6
. It was valid up to and including specification version1.2
.(RTN15c2)
This clause has been replaced byRTN15c7
. It was valid up to and including specification version1.2
.(RTN15c3)
This clause has been replaced byRTN15c7
. It was valid up to and including specification version1.2
.
(RTN15f)
This clause has been deleted (redundant to RTN19a). It was valid up to and including specification version 1.2.(RTN15d)
Client libraries should have test coverage to ensure connection state recovery is working as expected by forcibly disconnecting a client and checking that messages published on channels are delivered once the connection is resumed(RTN15e)
When a connection is resumed, theConnection#key
may change and will be provided in the firstCONNECTED
ProtocolMessage#connectionDetails
when the connection is established. The client library must update theConnection#key
value with the newconnectionKey
value every time
(RTN20)
When the client library can subscribe to the Operating System events for network/internet connectivity changes:(RTN20a)
WhenCONNECTED
orCONNECTING
, if the operating system indicates that the underlying internet connection is no longer available, then the client library should immediately transition the state toDISCONNECTED
with emit a state change with an appropriatereason
. This state change will automatically trigger the client library to attempt to reconnect, seeRTN15
above(RTN20b)
WhenDISCONNECTED
orSUSPENDED
, if the operating system indicates that the underlying internet connection is now available, the client library should immediately attempt to connect(RTN20c)
WhenCONNECTING
, if the operating system indicates that the underlying internet connection is now available, the client should restart the pending connection attempt
(RTN16)
Connection
recovery:(RTN16i)
Connection recovery is similar to connection resumption (see RTN15c), except that instead of the library resuming from a time at which that library instance was previously connected, it is doing so from external state provided in the client options, (TO3i). Since the library has no state at the time of connection, the channels must be explicitly attached by the user; continuity preservation is achieved by the @channelSerial@s for each channel being stored in the recovery key.(RTN16f)
When a library is instantiated with therecover
client option, it should initialize its internalmsgSerial
counter to themsgSerial
component of therecoveryKey
. (If the recover fails, the counter should be reset to 0 per RTN15c7 )(RTN16f1)
If the recovery key provided in therecover
client option cannot be deserialized due to malformed data, then an error should be logged and the connection should be made like norecover
option was provided.
(RTN16j)
When a library is instantiated with therecover
client option, for every channel/channelSerial pair in therecoveryKey
, it should instantiate a corresponding channel and set its RTL15bchannelSerial
.(RTN16k)
When the library first connects to Ably after being instantiated with arecover
client option, it should add an additionalrecover
querystring param to the websocket request, set from theconnectionKey
component of therecoveryKey
. Once the library has successfully connected to Ably, it should never again supply arecover
querystring param.(RTN16g)
Connection#createRecoveryKey
is a function that returns a string which incorporates theconnectionKey
, the currentmsgSerial
, and a collection of pairs of channelname
and currentchannelSerial
for every currently attached channel.(RTN16g1)
It must be serialized in a way which is able to encode any unicode channel name. The SDK may assume that the recovery key will only be consumed by the same type of SDK, so this spec does not specify any particular serialization; however, the format should be forward-compatible through the same major version of the SDK.(RTN16g2)
It should returnNull
when the SDK is in theCLOSED
,CLOSING
,FAILED
, orSUSPENDED
states, or when it does not have aconnectionKey
(for example, it has not yet become connected).
(RTN16d)
The library may wish to test that after a connection has been successfully recovered, theConnection#id
should be identical to theid
of the connection that was recovered, andConnection#key
should have been updated to theConnectionDetails#connectionKey
provided in theCONNECTED
ProtocolMessage
.(RTN16m)
This clause has been deleted. It was valid up to and including specification version2.1
.(RTN16m1)
This clause has been deleted. It was valid up to and including specification version2.1
.
(RTN16l)
Recovery failures should be handled identically to resume failures, per RTN15c7, RTN15c5, and RTN15c4.(RTN16a)
This clause has been replaced byRTN16i
. It was valid up to and including specification version1.2
.(RTN16b)
This clause has been replaced byRTN16g
andRTN16m
. It was valid up to and including specification version1.2
.(RTN16c)
This clause has been replaced byRTN16g2
. It was valid up to and including specification version1.2
.(RTN16e)
This clause has been replaced byRTN16l
. It was valid up to and including specification version1.2
.
(RTN17)
Host Fallback(RTN17b)
The fallback behavior described by this section, RTN17, only applies when either:(RTN17b1)
ClientOptions#realtimeHost
has not been set to an explicit value (see RTC1d) andClientOptions#port
is not set andClientOptions#tlsPort
is not set(RTN17b2)
An array ofClientOptions#fallbackHosts
is provided(RTN17b3)
The deprecatedClientOptions#fallbackHostsUseDefault
option is set totrue
(RTN17a)
By default, every connection attempt is first attempted to the default primary hostrealtime.ably.io
(unless overriden inClientOptions#environment
orClientOptions#realtimeHost
), which, through DNS, is automatically routed to the client’s closest datacenter. The client library must always prefer the default endpoint (closest datacenter), even if a previous connection attempt to that endpoint has failed. (That is,RSC15f
does not apply)(RTN17c)
In the case of an error necessitating use of an alternative host (see RTN17d), theConnection
manager should first check if an internet connection is available by issuing aGET
request tohttps://internet-up.ably-realtime.com/is-the-internet-up.txt
. If the request succeeds and the text “yes” is included in the body, then the client library can assume it has a viable internet connection and should then immediately retry the connection against fallback hosts in random order to find an alternative healthy datacenter. Fallback hosts are chosen as per RSC15g, and must use a matching Host header as per RSC15j(RTN17d)
This clause has been replaced byRTN17f
.(RTN17f)
Errors that necessitate use of an alternative host include any of the failure conditions specified inRSC15l
, and additionally also:(RTN17f1)
aDISCONNECTED
response with anerror.statusCode
in the range500 <= code <= 504
(RTN17e)
If the realtime client is connected to a fallback host endpoint, then for the duration that the transport is connected to that host, all HTTP requests, such as history or token requests, should be first attempted to the same datacenter the realtime connection is established with i.e. the same fallback host must be used as the default HTTP request host. If however the HTTP request against that fallback host fails, then the normal fallback host behavior should be followed attempting the request against another fallback host as described in RSC15
(RTN19)
Transport state side effects – when a transport is disconnected for any reason:(RTN19a)
AnyProtocolMessage
that is awaiting anACK
/NACK
on the old transport will not receive theACK
/NACK
on the new transport. The client library must therefore resend anyProtocolMessage
that is awaiting aACK
/NACK
to Ably in order to receive the expectedACK
/NACK
for that message (subject toRTN7c
/RTN7d
). The Ably service is responsible for keeping track of messages, ignoring duplicates and responding with suitableACK
/NACK
messages(RTN19a1)
One possible implementation of this requirement would be to add any in-flight messages to theRTL6c2
connection-wide queue of messages that will be sent once the connection next becomesCONNECTED
(RTN19a2)
In the case of anRTN15c6
successful resume, themsgSerial
of the reattempted @ProtocolMessage@s should remain the same as for the original attempt. In the case of anRTN15c7
failed resume, the message must be assigned a newmsgSerial
from the SDK’s internal counter.
(RTN19b)
If there are any pending channels i.e. in theATTACHING
orDETACHING
state, the respectiveATTACH
orDETACH
message should be resent to Ably
(RTN23)
Heartbeats(RTN23a)
If a transport does not receive any indication of activity on a transport for a period greater than the sum of themaxIdleInterval
(which will be sent in theconnectionDetails
of the most recentCONNECTED
message received on that transport) and therealtimeRequestTimeout
, that transport should be disconnected. Any message (or non-message indicator, seeRTN23b
) received counts as an indication of activity and should reset the timer, not merely heartbeat messages. However, it must be received (that is, sent from the server to the client); client-sent data does not count.(RTN23b)
When initiating a connection, the client may send aheartbeats
param in the querystring, with valuetrue
orfalse
. If the value is true, the server will use Ably protocol messages (for example, a message with aHEARTBEAT
action) to satisfy themaxIdleInterval
requirement. If it is false or unspecified, the server is permitted to use any transport-level mechanism (for example, websocket ping frames) to satisfy this. So for example, for websocket transports, if the client is able to observe websocket pings, then it should sendheartbeats=false
. If not, it should sendheartbeats=true
.
(RTN24)
A connected client may receive aCONNECTED
ProtocolMessage
from Ably at any point (though is typically triggered by a reauth, seeRTC8a
). TheconnectionDetails
in theProtocolMessage
must override any stored details, seeRTN21
. TheConnection
should emit anUPDATE
event with aConnectionStateChange
object, which should have bothprevious
andcurrent
attributes set toCONNECTED
, and thereason
attribute set to to theerror
member of theCONNECTED
ProtocolMessage
(if any). (Note thatUPDATE
should be the only event emitted: in particular, the library must not emit anCONNECTED
event if the client was already connected, seeRTN4h
).(RTN25)
Connection#errorReason
attribute is an optionalErrorInfo
object which is set by the library when an error occurs on the connection, as described by RSA4c1, RSA4d, RTN11d, RTN14a, RTN14b, RTN14e, RTN14g, RTN15c7, RTN15c4, RTN15d, RTN15h, RTN15i, RTN16e.(RTN26)
Connection#whenState
function:(RTN26a)
If the connection is already in the given state, calls the listener with a `null` argument.(RTN26b)
Else, calls#once
with the given state and listener.
(RTS1)
Channels
is a collection ofRealtimeChannel
objects accessible throughRealtimeClient#channels
(RTS2)
Methods should exist to check if a channel exists or iterate through the existing channels(RTS3)
Channels#get
function:(RTS3a)
Creates a newRealtimeChannel
object for the specified channel if none exists, or returns the existing channel.ChannelOptions
can be provided in an optional second argument(RTS3b)
If options are provided, the options are set on theRealtimeChannel
when creating a newRealtimeChannel
(RTS3c)
Accessing an existingRealtimeChannel
with options in the formChannels#get(channel, options)
will update the options on the channel and then return the existingRealtimeChannel
object. (Note that this is soft-deprecated and may be removed in a future release, so should not be implemented in new client libraries. The supported way to update a set ofChannelOptions
isRealtimeChannel#setOptions
)(RTS3c1)
If a new set ofChannelOptions
is supplied toChannels#get
that would trigger a reattachment of the channel if supplied toRealtimeChannel#setOptions
perRTL16a
, it must raise an error, informing the user that they must useRealtimeChannel#setOptions
instead
(RTS4)
Channels#release
function:(RTS4a)
Detaches the channel and then releases the channel resource i.e. it’s deleted and can then be garbage collected
(RTS5)
Channels#getDerived
function:(RTS5a)
TakesRealtimeChannel
name andDeriveOptions
object as argument, to create a derived channel.ChannelOptions
can be provided as an optional third argument.(RTS5a1)
The provided derive option (e.g filter, which is the only supported derive options at the moment) should be synthesized to the channel as [filter=]channelName.(RTS5a2)
If channel options are provided on the channel (e.g rewind channel param), the options are set on the derived channel upon creation as [filter=?rewind=1]channelName.
(RTL23)
RealtimeChannel#name
attribute is a string containing the channel’s name(RTL1)
As soon as aRealtimeChannel
becomes attached, all incoming messages and presence messages (where ‘incoming’ is defined as ‘received from Ably over the realtime transport’) are processed and emitted where applicable.PRESENCE
andSYNC
messages are passed to theRealtimePresence
object ensuring it maintains a map of current members on a channel in realtime(RTL2)
TheRealtimeChannel
implementsEventEmitter
and emitsChannelEvent
events, where aChannelEvent
is either aChannelState
orUPDATE
, and aChannelState
is eitherINITIALIZED
,ATTACHING
,ATTACHED
,DETACHING
,DETACHED
,SUSPENDED
andFAILED
(RTL2a)
It emits aChannelState
ChannelEvent
for every channel state change(RTL2g)
It emits anUPDATE
ChannelEvent
for changes to channel conditions for which theChannelState
(e.g.ATTACHED
) does not change, unless explicitly prevented by a more specific condition (see RTL12). (The library must never emit aChannelState
ChannelEvent
for a state equal to the previous state)(RTL2b)
RealtimeChannel#state
attribute is the current state of the channel, of typeChannelState
(RTL2d)
AChannelStateChange
object is emitted as the first argument for everyChannelEvent
(including bothRTL2a
state changes andRTL2g
UPDATE
events). It may optionally contain areason
consisting of anErrorInfo
object; any state change triggered by aProtocolMessage
that contains anerror
member should populate thereason
with that error in the corresponding state change event(RTL2f)
When a channelATTACHED
ProtocolMessage
is received, theProtocolMessage
may contain aRESUMED
bit flag indicating that the channel has been resumed. The correspondingChannelStateChange
(eitherATTACHED
perRTL2a
, orUPDATE
perRTL12
) will contain aresumed
boolean attribute with valuetrue
if the bit flagRESUMED
was included. Whenresumed
istrue
, this indicates that the channel attach resumed the channel state from an existing connection and there has been no loss of message continuity. In all other cases,resumed
is false. A test should exist to ensure thatresumed
is always false when a channel first becomesATTACHED
, it istrue
when the channel isATTACHED
following a successful connection resumption and connection recovery, and isfalse
when the channel isATTACHED
following a failed connection resumption or connection recovery(RTL2h)
Optionally, for backwards compatibility with 0.8 libraries, theRealtimeChannel
EventEmitter
can provide an overloaded method that supportson(ChannelState)
, but must issue a deprecation warning(RTL2i)
ChannelStateChange
may optionally expose a booleanhasBacklog
property. This property should be set totrue
if and only if the state change corresponds to anATTACHED
ProtocolMessage
containing aHAS_BACKLOG
bit flag.
(RTL3)
Connection state change side effects:(RTL3e)
If the connection state enters theDISCONNECTED
state, it will have no effect on the channel states.(RTL3a)
If the connection state enters theFAILED
state, then anATTACHING
orATTACHED
channel state will transition toFAILED
and set theRealtimeChannel#errorReason
(RTL3b)
If the connection state enters theCLOSED
state, then anATTACHING
orATTACHED
channel state will transition toDETACHED
(RTL3c)
If the connection state enters theSUSPENDED
state, then anATTACHING
orATTACHED
channel state will transition toSUSPENDED
(RTL3d)
If the connection state enters theCONNECTED
state, any channels in theATTACHING
,ATTACHED
, orSUSPENDED
states should be transitioned toATTACHING
(other than ones already in that state), and initiate anRTL4c
attach sequence. (If the attach operation times out and the channel was previouslySUSPENDED
, it should return to theSUSPENDED
state, see RTL4f). The connection should also process any messages that had been queued perRTL6c2
(it should do this immediately, without waiting for the attach operations to finish).
(RTL11)
If a channel enters theDETACHED
,SUSPENDED
orFAILED
state, then all presence actions that are still queued for send on that channel per RTP16b should be deleted from the queue, and any callback passed to the corresponding presence method invocation should be called with anErrorInfo
indicating the failure(RTL11a)
For clarity, any messages awaiting anACK
orNACK
are unaffected by channel state changes i.e. a channel that becomes detached following an explicit request to detach may still receive anACK
orNACK
for messages published on that channel later
(RTL4)
RealtimeChannel#attach
function:(RTL4a)
If alreadyATTACHED
nothing is done(RTL4h)
If the channel is in a pending stateDETACHING
orATTACHING
, do the attach operation after the completion of the pending request(RTL4g)
If the channel is in theFAILED
state, theattach
request sets itserrorReason
tonull
, and proceeds with a channel attach described in RTL4b, RTL4i and RTL4c(RTL4b)
If the connection state isINITIALIZED
,CLOSED
,CLOSING
,SUSPENDED
orFAILED
, theattach
request results in an error(RTL4b1)
Note that an attach attempt immediately after the library is instantiated, assumingautoConnect
(TO3e
)is not set tofalse
, should not raise an error (that is, should fall underRTL4i
, notRTL4b
), since the library should be in aCONNECTING
state at that point
(RTL4i)
If the connection state isCONNECTING
orDISCONNECTED
, the channel should be put into theATTACHING
state. (Attach message will be sent once the the connection becomesCONNECTED
perRTL3d
).(RTL4c)
Otherwise anATTACH
ProtocolMessage is sent to the server, the state transitions toATTACHING
and the channel becomesATTACHED
when the confirmationATTACHED
ProtocolMessage is received(RTL4c1)
TheATTACH
ProtocolMessagechannelSerial
field must be set to thechannelSerial
of the most recent message/presence ProtocolMessage received on that channel (which will have been stored in the channel perRTL15b
). If no messages have been received on the channel, the field may be set tonull
or omitted.
(RTL4f)
Once anATTACH
ProtocolMessage
is sent, if anATTACHED
ProtocolMessage
is not received within the default realtime request timeout, the attach request should be treated as though it has failed and the channel should transition to theSUSPENDED
state. The channel will then be subsequently automatically re-attached as described in RTL13(RTL4d)
A callback (or other language-idiomatic equivalent) can be provided that is called when the channel next moves to one ofATTACHED
,DETACHED
,SUSPENDED
, orFAILED
states. In the case ofATTACHED
the callback is called with no argument. In all other cases it is called with anErrorInfo
corresponding to theChannelStateChange.reason
of the state change (or a fallback if there is noreason
) to indicate that the attach has failed. (Note: when combined with RTL4f, this means that if the connection isCONNECTED
, the callback is guaranteed to be called withinrealtimeRequestTimeout
of theattach()
call)(RTL4d1)
Optionally, upon success, the callback may be invoked with theChannelStateChange
object once the channel is attached. If the channel is already attached, it should be invoked withnull
.
(RTL4e)
If the user does not have sufficient permissions to attach to the channel, the channel will transition toFAILED
and set theRealtimeChannel#errorReason
(RTL4j)
If the attach is not a clean attach (defined inRTL4j1
), for example an automatic reattach triggered byRTN15c3
orRTL13a
(non-exhaustive), the library should set theATTACH_RESUME
flag in theATTACH
message(RTL4j1)
A ‘clean attach’ is an attach attempt where the channel has either not previously been attached or has been explicitly detached since the last time it was attached. Note that this is not purely a function of the immediate previous channel state. An example implementation would be to set the flag from anattachResume
private boolean variable on the channel, that starts out set tofalse
, is set totrue
when the channel moves to theATTACHED
state, and set tofalse
when the channel moves to theDETACHING
orFAILED
states.(RTL4j2)
The client library can test that the flag is being correctly encoded (and thatRTL4k
channel params are correctly included) by publishing a message on a channel, then having another two clients attach to that channel both specifying arewind
channel param of"1"
, one of which has theATTACH_RESUME
flag forcibly set, other doesn’t. The client without the flag set should receive the previously-published message once the attach succeeds; the one with that flag set should not
(RTL4k)
If the user has specified a non-emptyparams
object in theChannelOptions
(TB2c
), it must be included in aparams
field of theATTACH
ProtocolMessage
(RTL4k1)
If any channel parameters are requested (which may be through theparams
field of theATTACH
message or some other way opaque to the client library), theATTACHED
(and any subsequentATTACHED
s) will include aparams
property (also aDict<String, String>
) containing the subset of those params that the server has recognised and validated. This should be exposed as a read-onlyparams
field of theRealtimeChannel
(or agetParams()
method where that is more idiomatic). AnATTACHED
message with noparams
property must be treated as equivalent to aparams
of{}
(that is,RealtimeChannel.params
should be set to the empty dict)
(RTL4l)
If the user has specified amodes
array in theChannelOptions
(TB2d
), it must be encoded as a bitfield perTR3
and set as theflags
field of theATTACH
ProtocolMessage
. (For the avoidance of doubt, when multiple different spec items require flags to be set in theATTACH
, the finalflags
field should be the bitwise OR of them all)(RTL4m)
On receipt of anATTACHED
, the client library should decode theflags
into an array ofChannelMode
s (that is, the same format asChannelOptions.modes
) and expose it as a read-onlymodes
field of theRealtimeChannel
(or agetModes()
method where that is more idiomatic). This should only containChannelMode
s: it should not contain flags which are not modes (seeTB2d
)
(RTL5)
RealtimeChannel#detach
function:(RTL5a)
If the channel state isINITIALIZED
orDETACHED
nothing is done(RTL5i)
If the channel is in a pending stateDETACHING
orATTACHING
, do the detach operation after the completion of the pending request(RTL5b)
If the channel state isFAILED
, thedetach
request results in an error(RTL5j)
If the channel state isSUSPENDED
, thedetach
request transitions the channel immediately to theDETACHED
state(RTL5g)
If the connection state isCLOSING
orFAILED
, thedetach
request results in an error(RTL5h)
If the connection state isCONNECTING
orDISCONNECTED
, do the detach operation once the connection state isCONNECTED
(RTL5d)
Otherwise aDETACH
ProtocolMessage is sent to the server, the state transitions toDETACHING
and the channel becomesDETACHED
when the confirmationDETACHED
ProtocolMessage is received(RTL5f)
Once aDETACH
ProtocolMessage
is sent, if aDETACHED
ProtocolMessage
is not received within the default realtime request timeout, the detach request should be treated as though it has failed and the channel will return to its previous state(RTL5k)
If the channel receives anATTACHED
message while in theDETACHING
orDETACHED
state, it should send a newDETACH
message and remain in (or transition to) theDETACHING
state(RTL5e)
If the language permits, a callback can be provided that is called when the channel is detached successfully or the detach fails and theErrorInfo
error is passed as an argument to the callback
(RTL6)
RealtimeChannel#publish
function:(RTL6a)
Messages are encoded in the same way as theRestChannel#publish
method, and RSL1g (size limit) applies similarly(RTL6b)
An optional callback can be provided to the#publish
method that is called when the message is successfully delivered or upon failure with the appropriateErrorInfo
error. A test should exist to publish lots of messages on a few connections to ensure all message success callbacks are called for all messages published(RTL6i)
Expects either aMessage
object, an array ofMessage
objects, or aname
string anddata
payload:(RTL6i1)
Whenname
anddata
(or aMessage
) is provided, a singleProtocolMessage
containing oneMessage
is published to Ably(RTL6i2)
When an array ofMessage
objects is provided, a singleProtocolMessage
is used to publish allMessage
objects in the array.(RTL6i3)
Allowsname
and ordata
to benull
. If any of the values arenull
, then key is not sent to Ably i.e. a payload with anull
value fordata
would be sent as follows{ "name": "click" }
(RTL6c)
Connection and channel state conditions:(RTL6c1)
If the connection isCONNECTED
and the channel isINITIALIZED
,ATTACHED
,DETACHED
,ATTACHING
, orDETACHING
then the messages are published immediately(RTL6c2)
If the connection isINITIALIZED
,CONNECTING
orDISCONNECTED
; and the channel isINITIALIZED
,ATTACHED
,DETACHED
,ATTACHING
, orDETACHING
; andClientOptions#queueMessages
has not been explicitly set to false; then the message will be placed in a connection-wide message queue to be delivered as soon as the connection isCONNECTED
. (The recommended implementation is to have the message be sent from the channel to the connection if it fulfils the channel state condition; the connection can then dispatch, queue, or reject it according to its own state andqueueMessages
)(RTL6c4)
In any other case the operation should result in an error(RTL6c5)
A publish should not trigger an implicit attach (in contrast to earlier version of this spec)
(RTL6d)
The protocol permitsMessage
s that have been queued to be sent in a singleProtocolMessage
, by bundling them into theProtocolMessage#messages
orProtocolMessage#presence
array. In general, the client library SHOULD NOT do this. If it does, it MUST conform to all of the following constraints:(RTL6d1)
The resultingProtocolMessage
must not exceed themaxMessageSize
(RTL6d2)
Messages can only be bundled together if they have the sameclientId
value (or both have noclientId
set). (Note that this constraint only applies to what the client library can autonomously do as part of queuing messages, not to what the user can do by publishing an array ofMessages
. It exists because if anyMessage
in aProtocolMessage
has an invalidclientId
, the entireProtocolMessage
is rejected. This is fine if the user has deliberately published theMessages
together – they requested atomicity – but not if the client library has bundled them without the user’s knowledge)(RTL6d3)
Messages can only be bundled together if they are for the samechannel
(RTL6d4)
Messages can only be bundled together if they are of the same type (that is,Message
versusPresenceMessage
)(RTL6d5)
Only contiguous messages in the queue can be bundled together. For example, if the user publishes three messages, A, B, and C, of which A and C could be bundled together underRTL6d1-4
but B could not, then no bundling should occur(RTL6d6)
The order of messages in the resultingProtocolMessage
Messages must match the publish order. For example, if the user publishesMessage
D, then theMessage
array [E, F], thenMessage
G, the finalmessages
array should be [D, E, F, G](RTL6d7)
Messages must not be bundled if any have had had theirMessage.id
property set
(RTL6e)
Unidentified clients using Basic Auth (i.e. anyclientId
is permitted as noclientId
specified):(RTL6e1)
When aMessage
with aclientId
value is published, Ably will accept and publish that message with the providedclientId
. A test should assert that theclientId
of the publishedMessage
is populated
(RTL6g)
Identified clients with aclientId
(as a result of either an explicitly configuredclientId
inClientOptions
, or implicitly through Token Auth):(RTL6g1)
When publishing aMessage
with theclientId
attribute set tonull
:(RTL6g1a)
It is unnecessary for the client to set theclientId
of theMessage
before publishing(RTL6g1b)
Ably will assign aclientId
upon receiving theMessage
. A test should assert that theclientId
value is populated for theMessage
when received
(RTL6g2)
When publishing aMessage
with theclientId
attribute value set to the identified client’sclientId
, Ably will accept the message and publish it. A test should assert that theclientId
value is populated for theMessage
when received(RTL6g3)
When publishing aMessage
with a differentclientId
attribute value from the identified client’sclientId
, the client library should reject that publish operation immediately. The message should not be sent to Ably and it should result in an error, typically in the form of an error callback. The connection and channel must remain available for further operations(RTL6g4)
When using Token Auth, unless aclientId
has been provided inClientOptions
or inferred following authentication, the client library is unidentified and will not be constrained when publishing messages with any explicitclientId
. If aMessage
with aclientId
value is published before theclientId
is configured or inferred following authentication, the client library should not reject any explicitclientId
specified in a message. A test should instantiate a client without an explicitclientId
and anauthCallback
that returns atokenDetails
object with aclientId
, then publish a message with the sameclientId
before authentication, and ensure that the message is published following authentication and received back with theclientId
intact. A further test should follow the same sequence of events, but should instead use an incompatibleclientId
in the message, expecting that the message is rejected by the Ably service and the message error should contain the server error message, and the connection and channel should remain available for further operations
(RTL6h)
Thepublish(name, data)
form should not take any arguments other than those two. If a client library has supported additional arguments to the(name, data)
form (e.g. separate arguments forclientId
andextras
, or a singleattributes
argument) in any 1.x version, it should continue to do so until version 2.0.(RTL6f)
Message#connectionId
should match the currentConnection#id
for all published messages, a test should exist to ensure theconnectionId
for received messages matches that of the publisher
(RTL7)
RealtimeChannel#subscribe
function:(RTL7a)
Subscribe with a single listener argument subscribes a listener to all messages(RTL7b)
Subscribe with a name argument and a listener argument subscribes a listener to only messages whosename
member matches the string name(RTL7c)
This clause has been replaced byRTL7g
. It was valid up to and including specification version3.0
.(RTL7g)
If theattachOnSubscribe
channel option istrue
, implicitly attaches theRealtimeChannel
if the channel is in theINITIALIZED
,DETACHING
, orDETACHED
states. The optional callback, if provided, is called according toRTL4d
based on the implicit attach operation. The listener will always be registered regardless of the implicit attach result(RTL7h)
If theattachOnSubscribe
channel option isfalse
, then the behaviour depends on the public API that a given SDK uses to communicate the result of anRTL7g
implicit attach:- If the SDK’s API accepts an optional callback to communicate the result of an
RTL7g
implicit attach, then it is a programmer error to provide such a callback when theattachOnSubscribe
channel option isfalse
. This programmer error should be handled in an idiomatic fashion; if this means that the#subscribe
call should throw an error, then this error should be anErrorInfo
withstatusCode
400 andcode
40000. - If the SDK’s API communicates the result of an “
RTL7g
”#RTL7g implicit attach in some other fashion (for example by returning aChannelStateChange?
), then, when theattachOnSubscribe
channel option isfalse
,#subscribe
should respond in the same way as it would if an “RTL7g
”#RTL7g implicit attach had been performed on an already-ATTACHED
channel (for example by returning anull
state change).
- If the SDK’s API accepts an optional callback to communicate the result of an
(RTL7d)
Messages delivered are automatically decoded based on theencoding
attribute; seeRestChannel
encoding features. Tests should exist to publish and subscribe to encoded messages using the AES 128 and AES 256 fixture test data(RTL7e)
If a message cannot be decoded or decrypted successfully, it should be delivered to the listener with theencoding
attribute set indicating the residual encoding state, and an error should be logged(RTL7f)
A test should exist ensuring published messages are not echoed back to the subscriber whenechoMessages
is set to false in theRealtimeClient
library constructor
(RTL8)
RealtimeChannel#unsubscribe
function:(RTL8c)
Unsubscribe with no arguments unsubscribes all listeners(RTL8a)
Unsubscribe with a single listener argument unsubscribes the provided listener to all messages if subscribed(RTL8b)
Unsubscribe with a name argument and a listener argument unsubscribes the provided listener if previously subscribed with a name-specific subscription
(RTL9)
RealtimeChannel#presence
attribute:(RTL9a)
Returns theRealtimePresence
object for this channel
(RTL10)
RealtimeChannel#history
function:(RTL10a)
Supports all the same params asRestChannel#history
(RTL10b)
Additionally supports the paramuntilAttach
, which if true, will only retrieve messages prior to the moment that the channel was attached or emitted anUPDATE
indicating loss of continuity. This bound is specified by passing the querystring paramfromSerial
with theRealtimeChannel#properties.attachSerial
assigned to the channel in theATTACHED
ProtocolMessage
(see RTL15a). If theuntilAttach
param is specified when the channel is not attached, it results in an error(RTL10c)
Returns aPaginatedResult
page containing the first page of messages in thePaginatedResult#items
attribute returned from the history request(RTL10d)
A test should exist that publishes messages from one client, and upon confirmation of message delivery, a history request should be made on another client to ensure all messages are available
(RTL12)
An attached channel may receive an additionalATTACHED
ProtocolMessage
from Ably at any point. (This is typically triggered following a transport being resumed to indicate a partial loss of message continuity on that channel, in which case theProtocolMessage
will have aresumed
flag set to false). If and only if theresumed
flag is false, this should result in the channel emitting anUPDATE
event with aChannelStateChange
object. TheChannelStateChange
object should have bothprevious
andcurrent
attributes set toattached
, thereason
attribute set to to theerror
member of theATTACHED
ProtocolMessage
(if any), and theresumed
attribute set per theRESUMED
bitflag of theATTACHED
ProtocolMessage
. (Note thatUPDATE
should be the only event emitted: in particular, the library must not emit anATTACHED
event if the channel was already attached, seeRTL2g
).(RTL15)
RealtimeChannel#properties
attribute is aChannelProperties
object representing properties of the channel state.properties
is a publicly accessible member of the channel, but it is an experimental and unstable API. It has the following attributes:(RTL15a)
attachSerial
is unset when the channel is instantiated, and is updated with thechannelSerial
from eachATTACHED
ProtocolMessage
received from Ably with a matchingchannel
attribute. TheattachSerial
value is used foruntilAttach
queries, see RTL10b(RTL15b)
channelSerial
is updated whenever aProtocolMessage
with eitherMESSAGE
,PRESENCE
, orATTACHED
actions is received on a channel, and is set to theTR4c
channelSerial
of thatProtocolMessage
, if and only if that field (ProtocolMessage.channelSerial
) is populated.
(RTL13)
If the channel receives a server initiatedDETACHED
message when it is in theATTACHING
,ATTACHED
orSUSPENDED
state (i.e. the client has not explicitly requested a detach putting the channel into theDETACHING
state), then the following applies:(RTL13a)
If the channel is in theATTACHED
orSUSPENDED
states, an attempt to reattach the channel should be made immediately by sending a newATTACH
message and the channel should transition to theATTACHING
state with the error emitted in theChannelStateChange
event.(RTL13b)
If the attempt to re-attach fails, or if the channel was already in theATTACHING
state, the channel will transition to theSUSPENDED
state and the error will be emitted in theChannelStateChange
event. An attempt to re-attach the channel automatically will then be made after the period defined byRTB1
. When re-attaching the channel, the channel will transition to theATTACHING
state. If that request to attach fails i.e. it times out or aDETACHED
message is received, then the process described here inRTL13b
will be repeated, indefinitely(RTL13c)
If the connection is no longerCONNECTED
, then the automatic attempts to re-attach the channel described in RTL13b must be cancelled as any implicit channel state changes subsequently will be covered by RTL3
(RTL14)
If anERROR ProtocolMessage
is received for this channel (the channel attribute matches this channel’s name), then the channel should immediately transition to the FAILED state, and theRealtimeChannel.errorReason
should be set(RTL16)
RealtimeChannel#setOptions
takes aChannelOptions
object and sets or updates the stored channel options.(RTL16a)
If the user has provided eitherChannelOptions.params
orChannelOptions.modes
and the channel is in either theattached
orattaching
state,RealtimeChannel#setOptions
sends anATTACH
message to the server with the params & modes encoded perRTL4
, and indicates success once the server has replied with anATTACHED
(or indicates failure if the channel becomes detached or failed before that happens, as withRealtimeChannel#attach
); else it indicates success immediately
(RTL17)
No messages should be passed to subscribers if the channel is in any state other thanATTACHED
.(RTL18)
Given “vcdiff”-encoded deltas are applied to the previous message published on a channel, when a “vcdiff” encoding fails to be decoded, it makes it impossible for a client to apply subsequent deltas received from that point of failure forward. As such, the client must automatically execute the following recovery procedure in lieu of RTL7e#“RTL7e”:(RTL18a)
Log error with code 40018(RTL18b)
Discard the message(RTL18c)
Send anATTACH
ProtocolMessage
with thechannelSerial
set to the previous message to the message for which “vcdiff” decoding failed to the server, transitioning the channel state toATTACHING
, and waiting for a confirmationATTACHED
, as perRTL4c
andRTL4f
.ChannelStateChange.reason
should be set toErrorInfo
object with with code 40018.
(RTL19)
The data payload of the last message on each channel must be stored at all times since it will be needed to decode any subsequent message that has a “vcdiff” encoding step. The stored value is the “base payload” of the most recent message; this is thedata
member of the message, in string or binary form, once all application-level encoding steps have been applied. The base payload is derived initially by processing a non-delta message; the processing and bookkeeping rules are as follows:(RTL19a)
When processing any message (whether a delta or a full message), if the messageencoding
string ends inbase64
, the messagedata
should be base64-decoded (and theencoding
string modified accordingly per RSL6).(RTL19b)
In the case of a non-delta message, the resultingdata
value is stored as the base payload.(RTL19c)
In the case of a delta message with avcdiff
encoding
step, thevcdiff
decoder must be used to decode the base payload of the of delta message, applying that delta to the stored base payload. The direct result of that vcdiff delta application, before performing any further decoding steps, is stored as the updated base payload.
(RTL20)
Theid
of the last received message on each channel must be stored along with the base payload. When processing a delta message (i.e. one whoseencoding
containsvcdiff
step) the stored last messageid
must be compared against the delta referenceid
, indicated in theMessage.extras.delta.from
field of the delta message. If the delta referenceid
of the received delta message does not equal the storedid
corresponding to the base payload, the message decoding must fail. The recovery procedure from RTL18 must be executed.(RTL21)
The messages in themessages
array of aProtocolMessage
should each be decoded in ascending order of their index in the array.(RTL22)
Methods must be provided for attaching and removing a listener which only executes when the message matches a set of criteria.(RTL22a)
The method must allow for filters matching one or more of:extras.ref.timeserial
,extras.ref.type
orname
. See #MFI1 for an object implementation.(RTL22b)
The method must allow for matching only messages which do not haveextras.ref
.(RTL22c)
The listener must only execute if all provided criteria are met.(RTL22d)
The method should use theMessageFilter
object if possible and idiomatic for the language.
(RTL24)
RealtimeChannel#errorReason
attribute is an optionalErrorInfo
object which is set by the library when an error occurs on the channel, as described by RTN11d, RTL3a, RTL4e, RTL4g, RTL14.(RTL25)
RealtimeChannel#whenState
function:(RTL25a)
If the channel is already in the given state, calls the listener with a `null` argument.(RTL25b)
Else, calls#once
with the given state and listener.
(RTP1)
When a channelATTACHED
ProtocolMessage
is received, theProtocolMessage
may contain aHAS_PRESENCE
bit flag indicating that it will perform a presence sync, see TR3 . (Note that this does not imply that there are definitely members present, only that there may be; the sync may be empty). If the flag is 1, the server will shortly perform aSYNC
operation as described in RTP18 . If that flag is 0 or there is noflags
field, the presence map should be considered in sync immediately with no members present on the channel(RTP2)
APresenceMap
should be used to maintain a list of members present on a channel. Broadly, this is is a map of memberKeys to presence messages, all withPRESENT
actions (during a sync there may also be ones with anABSENT
action, see RTP2f).(RTP2a)
All incoming presence messages must be compared for newness with the matching member already in thePresenceMap
, if one exists, where “matching” means they share the samememberKey
(or equivalently, they share bothconnectionId
andclientId
)(RTP2b)
To compare for newness:(RTP2b1)
If either presence message has aconnectionId
which is not an initial substring of itsid
, compare them bytimestamp
numerically. (This will be the case when one of them is a ‘synthesized leave’ event sent by realtime to indicate a connection disconnected unexpectedly 15s ago. Such messages will have anid
that does not correspond to itsconnectionId
, as it wasn’t actually published by that connection)(RTP2b1a)
If the timestamps compare equal, the newly-incoming message is considered newer than the existing one
(RTP2b2)
Else split theid
of both presence messages (which will be of the formconnid:msgSerial:index
, e.g.aaaaaa:0:0
) on the separator:
, and parse the latter two as integers. Compare them first bymsgSerial
numerically, then (ifmsgSerial
is equal) byindex
numerically, larger being newer in both cases
(RTP2c)
As there are no guarantees that during aSYNC
operation presence events will arrive in order, all presence messages from aSYNC
must also be compared for newness in the same way as they would from aPRESENCE
(RTP2d)
When a presence message with an action ofENTER
,UPDATE
, orPRESENT
arrives, it should be added to the presence map with the action set toPRESENT
(RTP2e)
If aSYNC
is not in progress, then when a presence message with an action ofLEAVE
arrives, thatmemberKey
should be deleted from the presence map, if present(RTP2f)
If aSYNC
is in progress, then when a presence message with an action ofLEAVE
arrives, it should be stored in the presence map with the action set toABSENT
. When theSYNC
completes, anyABSENT
members should be deleted from the presence map. (This is because in aSYNC
, we might receive aLEAVE
before the correspondingENTER
).(RTP2g)
Any incoming presence message that passes the newness check should be emitted on theRealtimePresence
object, with an event name set to its original action. Note: this action may not be the same one that it will have when stored in the presence map. For example: an incoming presence message with anENTER
action will be emitted as anenter
event, and the emitted presence message will have its action set toENTER
. However, it will be stored in the presence map with aPRESENT
action.
(RTP18)
The realtime system reserves the right to initiate a sync of the presence members at any point once a channel is attached. A server initiated sync provides Ably with a means to send a complete list of members present on the channel at any point(RTP18a)
The client library determines that a new sync has started whenever aSYNC
ProtocolMessage
is received with achannel
attribute and a new sync sequence identifier in thechannelSerial
attribute. ThechannelSerial
is used as the sync cursor and is a two-part identifier<sync sequence id>:<cursor value>
. If a new sequence identifier is sent from Ably, then the client library must consider that to be the start of a new sync sequence and any previous in-flight sync should be discarded(RTP18b)
The sync operation for that sequence identifier has completed once the cursor is empty; that is, when thechannelSerial
looks like<sync sequence id>:
(RTP18c)
aSYNC
may also be sent with nochannelSerial
attribute. In this case, the sync data is entirely contained within thatProtocolMessage
(RTP19)
If thePresenceMap
has existing members when aSYNC
is started, the client library must ensure that members no longer present on the channel are removed from the localPresenceMap
once the sync is complete. In order to do this, the client library must keep track of any members that have not been added or updated in thePresenceMap
during the sync process. Note that a member can be added or updated when received in aSYNC
message or when received in aPRESENCE
message during the sync process. Once the sync is complete, the members in thePresenceMap
that have not been added or updated should be removed from thePresenceMap
and aLEAVE
event should be published for each. ThePresenceMessage
published should contain the original attributes of the presence member with theaction
set toLEAVE
,PresenceMessage#id
set tonull
, and thetimestamp
set to the current time. This behavior should be tested as follows:ENTER
presence on a channel, wait forSYNC
to complete, inject a member directly into the localPresenceMap
so that it only exists locally and not on the server, send aSYNC
message with thechannel
attribute populated with the current channel which will trigger a server initiatedSYNC
. ALEAVE
event should then be published for the injected member, and checking thePresenceMap
should reveal that the member was removed and the valid member entered for this connection is still present(RTP19a)
If thePresenceMap
has existing members when anATTACHED
message is received without aHAS_PRESENCE
flag, the client library should emit aLEAVE
event for each existing member, and thePresenceMessage
published should contain the original attributes of the presence member with theaction
set toLEAVE
,PresenceMessage#id
set tonull
, and thetimestamp
set to the current time. Once complete, all members in thePresenceMap
should be removed as there are no members present on the channel
(RTP17)
The RealtimePresence object should also keep a secondPresenceMap
containing only members that match the currentconnectionId
. Any incoming presence message that satisfiesRTP17b
should be applied to this object in the same way as for the normalPresenceMap
. This object should be private and is used to maintain a list of members that need to be automatically re-entered by theRealtimePresence
object when required to byRTP17f
.(RTP17a)
All members belonging to the current connection are published as aPresenceMessage
on theRealtimeChannel
by the server irrespective of whether the client has permission to subscribe or theRealtimeChannel
is configured to publish presence events. A test should exist that attaches to aRealtimeChannel
with apresence
capability and without asubscribe
capability. It should then enter theRealtimeChannel
and ensure that the member entered from the current connection is present in the internal and public presence set available viaRealtimePresence#get
(RTP17b)
The events that should be applied to theRTP17
presence map are: anyENTER
,PRESENT
orUPDATE
event with aconnectionId
that matches the current client’sconnectionId
; anyLEAVE
event with aconnectionId
that matches the current client’sconnectionId
and is not a ‘synthesized leave’ (an event that has a connectionId which is not an initial substring of its id, perRTP2b1
)(RTP17h)
Unlike the mainPresenceMap
, which is keyed by memberKey , theRTP17
PresenceMap
must be keyed only byclientId
. (Otherwise, entries associated with old @connectionId@s would never be removed, even if the user deliberately leaves presence).(RTP17f)
This clause has been replaced byRTP17i
. It was valid up to and including specification version3.0
.(RTP17i)
TheRealtimePresence
object should perform automatic re-entry whenever the channel receives anATTACHED
ProtocolMessage
, except in the case where the channel is already attached and theProtocolMessage
has theRESUMED
bit flag set.(RTP17g)
Automatic re-entry consists of, for each member of theRTP17
internalPresenceMap
, publishing aPresenceMessage
with anENTER
action using theclientId
,data
, andid
(subject to @RTP17g1) attributes from that member.(RTP17g1)
If the current connectionid
is different from theconnectionId
attribute of the stored member, the publishedPresenceMessage
must not have itsid
set.
(RTP17c)
This clause has been replaced byRTP17f
. It was valid up to and including specification version1.2
.(RTP17c1)
This clause has been deleted. It was valid up to and including specification version1.2
.(RTP17c2)
This clause has been deleted. It was valid up to and including specification version1.2
.
(RTP17d)
This clause has been replaced byRTP17g
. It was valid up to and including specification version1.2
.(RTP17e)
If the publish attempt fails for an automatic presenceENTER
(for example, by Ably rejecting it with aNACK
), anUPDATE
event should be emitted on the channel withresumed
set to true andreason
set to anErrorInfo
object withcode
91004
, amessage
indicating that an automatic re-enter has failed and indicating theclientId
, andcause
set to the reason for the enter failure. The error should also be logged atwarn
level or higher.
(RTP4)
Ensure a test exists that enters 250 members usingRealtimePresence#enterClient
on a single connection, and checks forPRESENT
events to be emitted on another connection for each member, and once sync is complete, all 250 members should be present in aRealtimePresence#get
request(RTP5)
RealtimeChannel state change side effects:(RTP5a)
If the channel enters theDETACHED
orFAILED
state then all queued presence messages will fail immediately, and thePresenceMap
and internal PresenceMap is cleared. The latter ensures members are not automatically re-entered if theRealtimeChannel
later becomes attached. Since channels in theDETACHED
andFAILED
states will not receive any presence updates from Ably, presence events (specificallyLEAVE
) should not be emitted when thePresenceMap
is cleared as each presence member’s state is unknown(RTP5a1)
A channel entering theDETACHED
,SUSPENDED
, orFAILED
state should also clear anychannelSerial
it has stored perRTL15b
.
(RTP5f)
If the channel enters theSUSPENDED
state then all queued presence messages will fail immediately, and thePresenceMap
is maintained. This ensures that if the channel later becomesATTACHED
, it will only emit presence events for the changes in thePresenceMap
that have occurred whilst the client was disconnected. A test should exist for a channel that is in theSUSPENDED
state containing presence members to transition to theATTACHED
state, and following theSYNC
process after attaching, any members present before and after the sync should not emit presence events, all other changes should be reflected in thePresenceMap
and should emit presence events on the channel(RTP5b)
If a channel enters theATTACHED
state then all queued presence messages will be sent immediately. A presenceSYNC
may be initiated perRTP1
(RTP16)
Connection state conditions:(RTP16a)
If the channel isATTACHED
then the presence messages are handled perRTL6c2
. (That is: they should be sent to the connection, to be published immediately if the connection isCONNECTED
, else if the connection state andqueueMessages
option allows they may be placed in a connection-wide queue to be published once the connection becomesCONNECTED
, else rejected)(RTP16b)
If the channel isATTACHING
orINITIALIZED
, then ifClientOptions.queueMessages
has not been explicitly set tofalse
, the presence messages should be queued at a channel level, to be handled perRTP16a
once the channel becomesATTACHED
, or failed if the channel state becomesSUSPENDED
,FAILED
, orDETACHED
first(RTP16c)
In any other case the operation should result in an error
(RTP6)
RealtimePresence#subscribe
function:(RTP6a)
Subscribe with a single listener argument subscribes a listener to all presence messages(RTP6b)
Subscribe with an action argument and a listener argument – such asENTER
,LEAVE
,UPDATE
orPRESENT
– subscribes a listener to receive only presence messages with that action. In lanuages where method overloading is supported the action argument may also be an array of actions to receive only presence messages with an action included in the supplied array.(RTP6c)
This clause has been replaced byRTP6d
. It was valid up to and including specification version3.0
.(RTP6d)
If theattachOnSubscribe
channel option istrue
, implicitly attaches theRealtimeChannel
if the channel is in theINITIALIZED
,DETACHING
, orDETACHED
states. The optional callback, if provided, is called according toRTL4d
based on the implicit attach operation. The listener will always be registered regardless of the implicit attach result(RTP6e)
If theattachOnSubscribe
channel option isfalse
, then the behaviour depends on the public API that a given SDK uses to communicate the result of anRTP6d
implicit attach:- If the SDK’s API accepts an optional callback to communicate the result of an
RTP6d
implicit attach, then it is a programmer error to provide such a callback when theattachOnSubscribe
channel option isfalse
. This programmer error should be handled in an idiomatic fashion; if this means that the#subscribe
call should throw an error, then this error should be anErrorInfo
withstatusCode
400 andcode
40000. - If the SDK’s API communicates the result of an “
RTP6d
”#RTP6d implicit attach in some other fashion (for example by returning aChannelStateChange?
), then, when theattachOnSubscribe
channel option isfalse
,#subscribe
should respond in the same way as it would if an “RTP6d
”#RTP6d implicit attach had been performed on an already-ATTACHED
channel (for example by returning anull
state change).
- If the SDK’s API accepts an optional callback to communicate the result of an
(RTP7)
RealtimePresence#unsubscribe
function:(RTP7c)
Unsubscribe with no arguments unsubscribes all listeners(RTP7a)
Unsubscribe with a single listener argument unsubscribes the listener if previously subscribed with an action-specific subscription(RTP7b)
Unsubscribe with an action argument and a listener argument unsubscribes the provided listener to all presence messages for that action
(RTP8)
RealtimePresence#enter
function:(RTP8a)
Enters the current client into this channel, optionally with the data and/or extras provided(RTP8b)
Optionally a callback can be provided that is called for both success or failure to enter(RTP8c)
APRESENCE ProtocolMessage
with aPresenceMessage
with the actionENTER
is sent to the Ably service. TheclientId
attribute of thePresenceMessage
must not be present. Entering without an explicitPresenceMessage#clientId
, implicitly uses theclientId
for the current connection(RTP8d)
Implicitly attaches theRealtimeChannel
if the channel is in theINITIALIZED
state. However, if the channel is in theDETACHED
orFAILED
state, theenter
request results in an error(RTP8e)
Optional data and/or extras can be included when entering a channel that will be encoded and decoded as with normal messages. A test should exist to ensure data and extras used with enter are encoded & decoded correctly. Also, when data and/or extras is provided when entering, but neither data nor extras are provided when leaving, the data attribute should be emitted in theLEAVE
event for this client(RTP8f)
This clause has been replaced by RTP8j as of version 1.2 of this specification(RTP8j)
If the connection is in theCONNECTED
state, and the value ofRealtimeClient#clientId
is one of the following:
-'*'
– a wildcard value indicating that this client is permitted to associate any client identifier it wishes with the operations it performs;
-null
– indicating that the client is anonymous and is not permitted to associate a client identifier with the operations it performs;
then theenter
request results in an error immediately.(RTP8g)
If the channel isDETACHED
orFAILED
, theenter
request results in an error immediately(RTP8h)
If the Ably service determines that the client does not have required presence permission, aNACK
is sent to the client resulting in an error(RTP8i)
If the Ably service determines that the client is unidentified, aNACK
is sent to the client resulting in an error
(RTP9)
RealtimePresence#update
function:(RTP9a)
Updates the data and/or extras for the present member with an updated value or empty value (egnull
)(RTP9b)
If the client was not already entered, it enters this client into this channel(RTP9c)
Optionally a callback can be provided that is called for both success or failure to update(RTP9d)
APRESENCE ProtocolMessage
with aPresenceMessage
with the actionUPDATE
is sent to the Ably service. TheclientId
attribute of thePresenceMessage
must not be present. Updating without an explicitPresenceMessage#clientId
, implicitly uses theclientId
for the current connection(RTP9e)
In all other ways, this method is identical toRealtimePresence#enter
and should have matching tests
(RTP10)
RealtimePresence#leave
function:(RTP10a)
Leaves this client from the channel and the data and/or extras will be updated with the values provided. If the language permits the data argument to be omitted, then the previously set data value will be sent as a convenience(RTP10b)
Optionally a callback can be provided that is called for both success or failure to leave(RTP10c)
APRESENCE ProtocolMessage
with aPresenceMessage
with the actionLEAVE
is sent to the Ably service. TheclientId
attribute of thePresenceMessage
must not be present. Leaving without an explicitPresenceMessage#clientId
, implicitly uses theclientId
for the current connection(RTP10d)
If the client is not currentlyENTERED
, Ably will respond with anACK
and the request will succeed (i.e. the outcome of asking toLEAVE
when not present vs being present is the same)(RTP10e)
In all other ways, this method is identical toRealtimePresence#enter
and should have matching tests
(RTP11)
RealtimePresence#get
function:(RTP11a)
Returns the list of current members on the channel in a callback. By default, will wait for theSYNC
to be completed, see RTP11c1(RTP11b)
Implicitly attaches theRealtimeChannel
if the channel is in theINITIALIZED
state. However, if the channel is in or enters theDETACHED
orFAILED
state before the operation succeeds, it will result in an error(RTP11d)
If theRealtimeChannel
is in theSUSPENDED
state then theget
function will by default, or ifwaitForSync
is set totrue
, result in an error withcode
91005
and amessage
stating that the presence state is out of sync due to the channel being in aSUSPENDED
state. If however theget
function is called withwaitForSync
set tofalse
, then it immediately returns the members currently stored in thePresenceMap
giving developers access to the members that were present at the time the channel becameSUSPENDED
(RTP11c)
An optional set of params can be provided:(RTP11c1)
waitForSync
(defaulttrue
). Whentrue
, method will wait untilSYNC
is complete before returning a list of members. Whenfalse
, known set of presence members is returned immediately, which may be incomplete if theSYNC
is not finished(RTP11c2)
clientId
filters members by the providedclientId
(RTP11c3)
connectionId
filters members by the providedconnectionId
(RTP12)
RealtimePresence#history
function:(RTP12a)
Supports all the same params asRestPresence#history
(RTP12c)
Returns aPaginatedResult
page containing the first page of messages in thePaginatedResult#items
attribute returned from the history request(RTP12d)
A test should exist that registers presence with a few clients, and upon confirmation of entering the channel for all clients, a presence history request should be made using another client to ensure all presence events are available
(RTP13)
RealtimePresence#syncComplete
attribute istrue
if the initialSYNC
operation has completed for the members present on the channel(RTP14)
RealtimePresence#enterClient
function:(RTP14a)
Enters into presence on a channel on behalf of anotherclientId
. This allows a single client with suitable permissions to register presence on behalf of any number of clients using a single connection(RTP14b)
Optionally a callback can be provided that is called for both success or failure to enter(RTP14c)
Data can optionally be provided when entering and will follow the normal encoding & decoding rules(RTP14d)
A test should exist that registers a number of members each with a differentclientId
on a presence channel, and then aRealtimePresence#get
should be used to verify that all members are present as expected
(RTP15)
RealtimePresence#enterClient
RealtimePresence#updateClient
andRealtimePresence#leaveClient
function:(RTP15a)
Performs an enter, update or leave for givenclientId
. These methods apply if the Realtime library was not initialized with a specificclientId
. This allows a single client with suitable permissions to update presence on behalf of any number of clients using a single connection. Otherwise these are functionality equivalent to the correspondingenter
,update
andleave
methods, and equivalent test coverage should be provided(RTP15b)
Tests should useenterClient
,updateClient
andleaveClient
for many members from oneRealtimeClient
instance and check that the operations are reflected in the presence map and the expected events are emitted on a separate client(RTP15c)
Tests should also ensure that using these methods has no side effects on a client that has entered normally usingRealtimePresence#enter
(RTP15d)
A callback can be provided that will be called upon success or failure(RTP15e)
Implicitly attaches theRealtimeChannel
if the channel is in theINITIALIZED
state. However, if the channel is in or enters theDETACHED
orFAILED
state before the operation succeeds, it will result in an error(RTP15f)
If the client is identified and has a validclientId
, and theclientId
argument does not match the client’sclientId
, then it should indicate an error. The connection and channel remain available for further operations
(RTE1)
EventEmitter
is a generic interface for event registration and delivery used in a number of the types in the Realtime client library. For example, theConnection
object emits events for connection state using theEventEmitter
pattern(RTE2)
Where objects providesubscribe
orunsubscribe
methods, they should follow the specification for theEventEmitter#on
andEventEmitter#off
methods respectively(RTE3)
EventEmitter#on
registers the provided listener for either all events when noevent
argument is provided, or for only a single named event when anevent
argument is provided. Ifon
is called more than once with the same listener andevent
, the listener is added multiple times to its listener registry. Therefore, as an example, assuming the same listener is registered twice usingon
, and an event is emitted once, the listener would be invoked twice(RTE4)
EventEmitter#once
registers the provided listener for either the first event that is emitted when noevent
argument is provided, or for only the first occurrence of a single named event when anevent
argument is provided. Ifonce
is called more than once with the same listener, the listener is added multiple times to its listener registry. Therefore, as an example, assuming the same listener is registered twice usingonce
, and an event is emitted once, the listener would be invoked twice. However, all subsequent events emitted would not invoke the listener asonce
ensures that each registration is only invoked once(RTE5)
EventEmitter#off
deregisters a listener. If called with a specific event and a listener, it removes all registrations that match both the given listener and the given event; if called only with a listener, it removes all registrations matching the given listener, regardless of whether they are associated with an event or not; if called with no arguments, it removes all registrations, for all events and listeners(RTE6)
EventEmitter#emit
emits an event, calling registered listeners with the given event name and any other given arguments. If an exception is raised in any of the listeners, the exception is caught by theEventEmitter
and the exception is logged to the Ably logger. Tests must exist to ensure exceptions raised in client code do not propagate and inhibit other event processing within the client library. This method is internal to the SDK and should not be exposed in its public interface.(RTE6a)
The set of listeners called byemit
must not change over the course of theemit
. That is: If a listener being called byemit
registers another listener, that second listener should not be called by that invocation ofemit
(even if it would have been called had it already been present); and if a listener being called byemit
removes other listeners, but those other listeners would otherwise have been called during thatemit
invocation, they should still be called. Tests should exist for both adding and removing. See https://goo.gl/OVTtjO
(RTB1)
For connections in theDISCONNECTED
state and realtime channels in theSUSPENDED
state the time until retry is calculated as the product of the initial retry timeout (forDISCONNECTED
connections this is thedisconnectedRetryTimeout
, forSUSPENDED
channels this is thechannelRetryTimeout
), the backoff coefficient as defined byRTB1a
, and the jitter coefficient as defined byRTB1b
.(RTB1a)
The backoff coefficient for the nth retry is calculated as the minimum of(n + 2) / 3
and2
(resulting in the sequence[1, 4/3, 5/3, 2, 2, ...]
).(RTB1b)
The jitter coefficient is a random number between 0.8 and 1. The randomness of this number doesn’t need to be cryptographically secure but should be approximately uniformly distributed.
(RTF1)
The library must apply the robustness principle in its processing of requests and responses with the Ably system. In particular, deserialization of ProtocolMessages and related types, and associated enums, must be tolerant to unrecognised attributes or enum values. Such unrecognised values must be ignored.
Initialized | Connecting | Connected | Disconnected | Suspended | Closing | Closed | Failed | |
---|---|---|---|---|---|---|---|---|
connect |
RTN11a | No-op | No-op | RTN11c | RTN11c | RTN11b | RTN11a | RTN11d |
close |
No-op | RTN12f | RTN12a | RTN12d | RTN12d | No-op | No-op | No-op |
ping |
RTN13b | RTN13c | RTN13a | RTN13c | RTN13b | RTN13b | RTN13b | RTN13b |
RealtimeChannel attach |
RTL4h | RTL4h | See channel states table | RTL4h | RTL4b | RTL4b | RTL4b | RTL4b |
RealtimeChannel detach |
RTL5h | RTL5h | See channel states table | RTL5h | See channel states table | RTL5g | See channel states table | RTL5g |
RealtimeChannel publish |
RTL6c2 | RTL6c2 | See channel states table | RTL6c2 | RTL6c4 | RTL6c4 | RTL6c4 | RTL6c4 |
Presence ops. | RTP16b | RTP16b | See channel states table | RTP16b | RTP16c | RTP16c | RTP16c | RTP16c |
Initialized | Attaching | Attached | Suspended | Detaching | Detached | Failed | |
---|---|---|---|---|---|---|---|
attach |
RTL4c | RTL4h | RTL4a | RTL4c | RTL4h | RTL4c | RTL4g |
detach |
RTL5h | RTL5i | RTL5d | RTL5j | RTL5i | RTL5a | RTL5b |
publish |
RTL6c2 | RTL6c2 | RTL6c1 | RTL6c4 | RTL6c4 | RTL6c4 | RTL6c3 |
Presence ops. | RTP16b | RTP16b | RTP16a | RTP16c | RTP16c | RTP16c | RTP16c |
(RSH1)
Push#admin
object provides the following interface:(RSH1a)
#publish(recipient, data)
performs an HTTP request to /push/publish. Empty values forrecipient
ordata
should be immediately rejected. An end-to-end push notification test can be made using the special test-onlyablyChannel
recipient. Additionally, tests should exist with valid and invalid recipient details(RSH1b)
#deviceRegistrations
provides access to the adminPushDeviceRegistrations
object with the following methods:(RSH1b1)
#get(deviceId)
performs a request to /push/deviceRegistrations/:deviceId and returns aDeviceDetails
object if thedeviceId
is found or results in a not found error if the device cannot be found. If the client has been activated as a push target device, and the specifieddeviceId
is that of the present client, then this request must include push device authentication.(RSH1b2)
#list(params)
performs a request to /push/deviceRegistrations and returns a paginated result withDeviceDetails
objects filtered by the provided params, as supported by the REST API. A test should exist filtering bydeviceId
and separately byclientId
, and then controlling the pagination with thelimit
attribute(RSH1b3)
#save(device)
issues aPUT
request to /push/deviceRegistrations/:deviceId using theDeviceDetails
object argument. A test should exist for a successful save, a successful subsequent save with an update, and a failed save operation. If the client has been activated as a push target device, and the specifieddeviceId
is that of the present client, then this request must include push device authentication.(RSH1b4)
#remove(deviceId)
issues aDELETE
request to /push/deviceRegistrations/:deviceId and deletes the registered device specified bydeviceId
. A test should exist that deletes a device and succeeds, and then also deletes a device that does not exist but still succeeds(RSH1b5)
#removeWhere(params)
issues aDELETE
request to /push/deviceRegistrations and deletes the registered devices matching the providedparams
. A test should exist that deletes devices byclientId
and bydeviceId
separately, then additionally issues a delete for devices with no matching params and checks the operation still succeeds. If the client has been activated as a push target device, and the specifieddeviceId
is that of the present client, then this request must include push device authentication.
(RSH1c)
#channelSubscriptions
provides access to the adminPushChannelSubscriptions
object with the following methods:(RSH1c1)
#list(params)
performs a request to /push/channelSubscriptions and returns a paginated result withPushChannelSubscription
objects filtered by the provided params, as supported by the REST API. A test should exist filtering bychannel
anddeviceId
and/orclientId
, and then controlling the pagination with thelimit
attribute(RSH1c2)
#listChannels(params)
performs a request to /push/channels and returns a paginated result withString
objects filtered by the provided params, as supported by the REST API. A test should exist using thelimit
attribute and pagination(RSH1c3)
#save(pushChannelSubscription)
issues aPOST
request to /push/channelSubscriptions using thePushChannelSubscription
object (and optionally a JSON-encodable object) argument. If the client has been activated as a push target device, and the specifiedPushChannelSubscription
contains adeviceId
matching that of the present client, then this request must include push device authentication. A test should exist for a successful save, a successful subsequent save with an update, and a failed save operation(RSH1c4)
#remove(push_channel_subscription)
issues aDELETE
request to /push/channelSubscriptions and deletes the channel subscription using the attributes as params to theDELETE
request. If the client has been activated as a push target device, and the specifiedPushChannelSubscription
contains adeviceId
matching that of the present client, then this request must include push device authentication. A test should exist that deletes aclientId
anddeviceId
channel subscription separately and both succeed, and then also deletes a subscription that does not exist but still succeeds(RSH1c5)
#removeWhere(params)
issues aDELETE
request to /push/channelSubscriptions and deletes the matching channel subscriptions provided inparams
. A test should exist that deletes channel subscriptions byclientId
and bydeviceId
separately, then additionally issues a delete for subscriptions with no matching params and checks the operation still succeeds.
(RSH2)
The following should only apply to platforms that support receiving push notifications:(RSH2a)
Push#activate
sends aCalledActivate
event to the state machine.(RSH2b)
Push#deactivate
sends aCalledDeactivate
event to the state machine.(RSH2c)
(Moved to(RSH8g)
).(RSH2d)
(Moved to(RSH8h)
).(RSH2e)
(Moved to(RSH8i)
).
(RSH3)
In platforms that support receiving push notifications, in order to connect the device’s push features with Ably’s, the library must perform the process described in the following abstract state machine. While this process should be implemented in whatever way better fits the concrete platform, it should be taken into account that its lifetime is that of the app that runs it, which outlives that of theRestClient
instance or (typically) the process running the app. This typically forces some kind of on-disk storage to which the state machine’s state must be persisted, so that it can be recovered later by new instances and processes running the app triggered by external events.(RSH3a)
StateNotActivated
(the initial one).(RSH3a1)
On eventCalledDeactivate
:(RSH3a1a)
This clause has been deleted. It was valid up to and including specification version3.0.0
.(RSH3a1b)
This clause has been deleted. It was valid up to and including specification version3.0.0
.(RSH3a1c)
If the local device hasdeviceIdentityToken
, does the same as(RSH3d2)
.(RSH3a1d)
Otherwise, does the same as(RSH3g2)
.
(RSH3a2)
On eventCalledActivate
:(RSH3a2a)
If the local device hasdeviceIdentityToken
, performs a validation of the local DeviceDetails via the following steps.(RSH3a2b)
onwards then don’t apply.(RSH3a2a1)
Checks the compatibilty of the present client with the existing registration: if theLocalDevice
has a non-emptyclientId
, and the present identified client has a different (non-null)clientId
, then aSyncRegistrationFailed
event should be fired containing an error withcode
61002, and skips to(RSH3a2a4)
.(RSH3a2a2)
If a customregisterCallback
was provided toPush#activate
, pass it the localDeviceDetails
.(RSH3a2a3)
Otherwise, makes an asynchronous HTTP PUT request to/push/deviceRegistrations/:deviceId
using the localDeviceDetails
with the push details as body. When the registration validation request is complete, aRegistrationSynced
orSyncRegistrationFailed
event should be fired.(RSH3a2a4)
Transitions toWaitingForRegistrationSync
.
(RSH3a2b)
If the local device does not haveid
ordeviceSecret
, both are generated locally. Theid
must be a unique identifier (e.g. UUID, GUID). ThedeviceSecret
must be created using secure random data with sufficient entropy to generate a digest of at least 32 bytes (eg using sha256) and encoding that digest with base64. The localDeviceDetails
is updated with the resultingdeviceId
anddeviceSecret
. If either theid
or thedeviceSecret
is lost then a new pair must be created.(RSH3a2c)
If the local device has the necessary push details (registration token, etc.), sends aGotPushDeviceDetails
event.(RSH3a2d)
If the local device does not have the necessary push details, it initiates a request to the underlying platform (or otherwise generates them)(RSH3a2e)
Transitions toWaitingForPushDeviceDetails
.
(RSH3a3)
On eventGotPushDeviceDetails
:(RSH3a3a)
Transitions toNotActivated
. (This consumes the event;(RSH3a2)
produces it again oncePush#activate
is called.)
(RSH3b)
StateWaitingForPushDeviceDetails
:(RSH3b1)
On eventCalledActivate
:(RSH3b1a)
Transitions toWaitingForPushDeviceDetails
.
(RSH3b2)
On eventCalledDeactivate
:(RSH3b2a)
MakesPush#deactivate
return or call its callback with no error.(RSH3b2b)
Transitions toNotActivated
.
(RSH3b3)
On eventGotPushDeviceDetails
:(RSH3b3a)
If a customregisterCallback
was provided toPush#activate
, pass it the localDeviceDetails
updated with the push details.(RSH3b3b)
Otherwise, make an asynchronous HTTPPOST
request to /push/deviceRegistrations using theLocalDevice
updated with the push details as body (together with thedeviceSecret
).(RSH3b3c)
Either way, when the registration is done, aGotDeviceRegistration
orGettingDeviceRegistrationFailed
event should be fired.(RSH3b3d)
Transitions toWaitingForDeviceRegistration
.
(RSH3b4)
On eventGettingPushDeviceDetailsFailed
:(RSH3b4a)
MakesPush#activate
return or call its callback with the error.(RSH3b4b)
Transitions toNotActivated
.
(RSH3c)
StateWaitingForDeviceRegistration
:(RSH3c1)
On eventCalledActivate
:(RSH3c1a)
Transitions toWaitingForDeviceRegistration
.
(RSH3c2)
On eventGotDeviceRegistration
:(RSH3c2a)
Updates the localDeviceDetails
with it.(RSH3c2b)
MakesPush#activate
return or call its callback with no error.(RSH3c2c)
Transitions toWaitingForNewPushDeviceDetails
.
(RSH3c3)
On eventGettingDeviceRegistrationFailed
:(RSH3c3a)
MakesPush#activate
return or call its callback with the error.(RSH3c3b)
Transitions toNotActivated
.
(RSH3d)
StateWaitingForNewPushDeviceDetails
:(RSH3d1)
On eventCalledActivate
:(RSH3d1a)
MakesPush#activate
return or call its callback with no error.(RSH3d1b)
Transitions toWaitingForNewPushDeviceDetails
.
(RSH3d2)
On eventCalledDeactivate
:(RSH3d2a)
If a customderegisterCallback
was provided toPush#deactivate
, pass it the localDeviceDetails
’s id.(RSH3d2b)
Otherwise, make an asynchronous DELETE HTTP request to /push/deviceRegistrations using the localDeviceDetails
’s ID. This operation requires push device authentication without other token or key authentication.(RSH3d2c)
Either way, when the registration is done, aDeregistered
orDeregistrationFailed
event should be fired.(RSH3d2c1)
Deregistered
event should be fired if the HTTP request returns a status code in the 2xx range, 401 (unauthorized), or code 40005 (invalid credentials). OtherwiseDeregistrationFailed
event should be fired.(RSH3d2d)
Transitions toWaitingForDeregistration
.
(RSH3d3)
On eventGotPushDeviceDetails
(note that this will only happen on platforms whose push device details, after first set, can change, e. g. FCM’s registration token refresh):(RSH3d3a)
If a customregisterCallback
was provided toPush#activate
, pass it the localDeviceDetails
updated with the push details.(RSH3d3b)
Otherwise, make an asynchronous PATCH HTTP request to /push/deviceRegistrations/:deviceId using the localDeviceDetails
’s push details as body (but only the changed fields, as described in the REST endpoint documentation). This operation requires push device authentication.(RSH3d3c)
Either way, when the registration is done, aRegistrationSynced
orSyncRegistrationFailed
event should be fired.(RSH3d3d)
Transitions toWaitingForRegistrationSync
.
(RSH3e)
StateWaitingForRegistrationSync
:(RSH3e1)
On eventCalledActivate
, unless the machine is in stateWaitingForRegistrationSync
as a result of aCalledActivate
event:(RSH3e1a)
MakesPush#activate
return or call its callback with no error.(RSH3e1b)
Transitions toWaitingForRegistrationSync
.
(RSH3e2)
On eventRegistrationSynced
:(RSH3e2b)
If the machine is in stateWaitingForRegistrationSync
as a result of aCalledActivate
event, makePush#activate
return or call its callback with no error.(RSH3e2c)
Otherwise, calls theupdatedCallback
provided toPush#activate
with no error.(RSH3e2a)
Transitions toWaitingForNewPushDeviceDetails
.
(RSH3e3)
On eventSyncRegistrationFailed
:(RSH3e3c)
If the machine is in stateWaitingForRegistrationSync
as a result of aCalledActivate
event, makePush#activate
return or call its callback with the error.(RSH3e3a)
(deprecated) Otherwise, calls theupdateFailedCallback
provided toPush#activate
with the error.(RSH3e3d)
Otherwise, calls theupdatedCallback
provided toPush#activate
with the error.(RSH3e3b)
Transitions toAfterRegistrationSyncFailed
.
(RSH3f)
StateAfterRegistrationSyncFailed
:(RSH3g)
StateWaitingForDeregistration
:(RSH3g1)
On eventCalledDeactivate
:(RSH3g1a)
Transitions toWaitingForDeregistration
.
(RSH3g2)
On eventDeregistered
:(RSH3g2a)
Clears all localDeviceDetails
.(RSH3g2b)
MakesPush#deactivate
return or call its callback with no error.(RSH3g2c)
Transitions toNotActivated
.
(RSH3g3)
On eventDeregistrationFailed
:(RSH3g3a)
MakesPush#deactivate
return or call its callback with the error.(RSH3g3b)
Transitions to the previous state, which is eitherWaitingForNewPushDeviceDetails
orAfterRegistrationSyncFailed
(so, in purity,WaitingForDeregistration
are two separate states, one for each previous state).
(RSH4)
When an event is fired and a transition from the current state is not defined for such event, the event is put into a queue. Then, whenever a transition happens, an event is dequeued from the queue. If a transition from the new current state is defined for the dequeued event, such transition happens. If not, the event is put back in its place in the queue. E. g. we’reWaitingForDeregistration
, and an eventCalledActivate
happens. This event will be put in the queue, since there’s no transition defined for it. Then, an eventDeregistered
arrives, causing a transition toNotActivated
. Now we peek the next item on the queue:CalledActivate
. BecauseNotActivated
transitions onCalledActivate
, the event is consumed and the machine transitions.(RSH5)
Event handling is atomic and sequential: while an event is being handled, the next one should be handled only after the current one has caused a state transition or has been put into the pending events queue.
(RSH6)
In platforms that support receiving push notifications, and have undergone push registration, are capable of authenticating themselves to the Ably server in order that certain push admin operations can be authorized.(RSH6a)
If a device has completed activation and has adeviceIdentityToken
then push device authentication is performed for a request by adding anX-Ably-DeviceToken
request header whose value is thedeviceIdentityToken
. This header has always beenX-Ably-DeviceToken
, but has previously been mistakenly documented asX-Ably-DeviceIdentityToken
in the hope of renaming it to avoid confusion with APNs device token. It was never renamed.(RSH6b)
If a device has not completed but has adeviceSecret
then push device authentication is performed for a request by adding anX-Ably-DeviceSecret
request header whose value is thedeviceSecret
.
(RSH7)
In platforms that support receiving push notifications,RestChannel
andRealtimeChannel
have an additionalpush
field, which is aPushChannel
object with the following interface:(RSH7a)
#subscribeDevice()
(RSH7a1)
Fails if theLocalDevice
doesn’t have andeviceIdentityToken
, ie. it isn’t registered yet.(RSH7a2)
Performs a POST request to /push/channelSubscriptions with the device’sid
and the channel name.(RSH7a3)
The request must include push device authentication
(RSH7b)
#subscribeClient()
(RSH7b1)
Fails if theLocalDevice
doesn’t have aclientId
.(RSH7b2)
Performs a POST request to /push/channelSubscriptions with the device’sclientId
and the channel name.
(RSH7c)
#unsubscribeDevice()
(RSH7c1)
Fails if theLocalDevice
doesn’t have adeviceIdentityToken
, ie. it isn’t registered yet.(RSH7c2)
Performs a DELETE request to /push/channelSubscriptions with the device’sid
and the channel name.(RSH7c3)
The request must include push device authentication
(RSH7d)
#unsubscribeClient()
(RSH7d1)
Fails if theLocalDevice
doesn’t have aclientId
.(RSH7d2)
Performs a DELETE request to /push/channelSubscriptions with the device’sclientId
and the channel name.
(RSH7e)
#listSubscriptions(params)
performs a GET request to /push/channelSubscriptions and returns a paginated result withPushChannelSubscription
objects filtered by the provided params, the channel name, the device ID, and the client ID if it exists, as supported by the REST API. AconcatFilters
param needs to be set totrue
as well.
(RSH8)
In platforms that support receiving push notifications, thedevice
method on theRestClient
orRealtimeClient
interfaces returns an instance ofLocalDevice
that represents the current state of the device in respect of it being a target for push notifications.(RSH8k)
LocalDevice
has the following attributes:(RSH8a)
TheLocalDevice
is initialised when first required, either as a result of a call toRestClient#device
orRealtimeClient#device
, or as a result of an operation involving the Activation State Machine. TheLocalDevice
id
,clientId
,deviceSecret
anddeviceIdentityToken
attributes are populated, together with anyrecipient
-related attributes, to the extent that they exist, from the persisted state.(RSH8b)
TheLocalDevice
id
anddeviceSecret
attributes are generated, and persisted as part of theLocalDevice
state, when required by step(RSH3a2b)
in the Activation State Machine. At that time, theclientId
attribute is also initialised, if the client is identified according to(RSA7)
.(RSH8c)
Following successful registration of aLocalDevice
, following the procedure in(RSH3c2a)
, the now knowndeviceIdentityToken
is set and persisted.(RSH8d)
If theLocalDevice
is created by an unidentified client (see(RSA7)
) and therefore has noclientId
set, but the client subsequently becomes identified (as a result of(RSA7b2)
or(RSA7b3)
), then theLocalDevice
clientId
is set and persisted.(RSH8e)
If theLocalDevice
clientId
becomes set as a result of(RSH8d)
, and theLocalDevice
is already registered (ie thedeviceIdentityToken
is set), and the ActivationStateMachine is in any state other thanNotActivated
, then aGotPushDeviceDetails
event is sent to the state machine once the effects of(RSH8d)
are visible, ie. onceLocalDevice
clientId
is set.(RSH8f)
If theLocalDevice
is created by an unidentified client (see(RSA7)
) and therefore has noclientId
set, but on receipt of a registration response (see(RSH3c2)
) the registered device has a non-emptyclientId
, then theLocalDevice
clientId
is set with thatclientId
.(RSH8g)
Whenever any change arises of the push transport details for local device (eg an FCM registration token update triggered by the platform), aGotPushDeviceDetails
event is sent to the state machine.(RSH8h)
If an attempt to obtain the push transport details for local device (eg an FCM registration token) fails, aGettingPushDeviceDetailsFailed
event containing the indicated error is sent to the state machine.(RSH8i)
Each time the library is instantiated, if the LocalDevice has push device details (eg an APNS deviceToken), and if the platform supports it, it must verify the validity of those details (eg by requesting a token from the platform and comparing that with the already-known token). If as a result there are updated details, then an update to the Ably server is triggered by sending aGotPushDeviceDetails
event to the state machine.(RSH8j)
If during library initialisation theLocalDevice
id
ordeviceSecret
attributes are not able to be loaded then those LocalDevice details must be discarded and the ActivationStateMachine machine should transition to theNotActivated
state. NewLocalDevice
id
anddeviceSecret
attributes should be generated on the next activation event.
(TM1)
AMessage
represents an individual message to be sent or received via the Ably Realtime service.(TM5)
Message
Action
enum has the following values in order from zero:MESSAGE_UNSET
,MESSAGE_CREATE
,MESSAGE_UPDATE
,MESSAGE_DELETE
,ANNOTATION_CREATE
,ANNOTATION_DELETE
,META_OCCUPANCY
(TM2)
The attributes available in aMessage
are:(TM2a)
id
string – unique ID for this message. This attribute is always populated for messages received over REST. For messages received over Realtime, if the message does not contain anid
, it should be set toprotocolMsgId:index
, whereprotocolMsgId
is the id of theProtocolMessage
encapsulating it, andindex
is the index of the message inside themessages
array of theProtocolMessage
(TM2b)
clientId
string(TM2c)
connectionId
string. If a message received from Ably does not contain aconnectionId
, it should be set to theconnectionId
of the encapsulatingProtocolMessage
(TM2h)
connectionKey
string (note this is only ever populated by a publishing client when publishing on behalf of another client, theconnectionKey
will never be populated for messages received. A simple test for this attribute over REST is to populate this with an invalidconnectionKey
when publishing and expecting a suitable error)(TM2g)
name
string(TM2d)
data
string, buffer or JSON-encodable object or array(TM2e)
encoding
string(TM2i)
extras
JSON-encodable object, used to contain any arbitrary key value pairs which may also contain other primitive JSON types, JSON-encodable objects or JSON-encodable arrays. Theextras
field is provided to contain message metadata and/or ancillary payloads in support of specific functionality, e.g. push. Each of these supported extensions is documented separately; for 1.1 the only supported extension ispush
, via theextras.push
member; 1.2 adds thedelta
extension whose keys and values are described by the attributes of the typeDeltaExtras
, and theheaders
extension, which contains arbitrarystring->string
key-value pairs, settable at publish time, andref
whose keys and values are described by the attributes of the typeReferenceExtras
. Unless otherwise specified, the client library should not attempt to do any filtering or validation of theextras
field itself, but should treat it opaquely, encoding it and passing it to realtime unaltered.(TM2f)
timestamp
time in milliseconds since epoch. If a message received from Ably does not contain atimestamp
, it should be set to thetimestamp
of the encapsulatingProtocolMessage
(TM2j)
action
enum(TM2k)
serial
string – an opaque string that uniquely identifies the message.(TM2l)
refSerial
string – an opaque string that uniquely identifies some referenced message.(TM2m)
refType
string – an opaque string that identifies the type of this reference.(TM2n)
operation
– object that may contain the following `optional` attributes;(TM2n1)
clientId
string(TM2n2)
description
string(TM2n3)
metadata
object – used to contain any arbitrary key value pairs of type string.
(TM2o)
updatedAt
time in milliseconds since epoch at which an operation occurred. This field is always populated on messages received with anaction
ofMESSAGE_UPDATE
orMESSAGE_DELETE
..(TM2p)
updateSerial
string – an opaque string that uniquely identifies the operation. This field is always populated on messages received with anaction
ofMESSAGE_UPDATE
orMESSAGE_DELETE
.
(TM4)
Message
has constructorsconstructor(name: String?, data: Data?)
andconstructor(name: String?, data: Data?, clientId: String?)
.(TM3)
fromEncoded
andfromEncodedArray
are alternative constructors that take an (already deserialized)Message
-like object (or array of such objects), and optionally achannelOptions
, and return aMessage
(or array of suchMessages
) that’s decoded and decrypted as specified inRSL6
, using the cipher in thechannelOptions
if the message is encrypted, with any residual transforms (ones that the library cannot decode or decrypt) left in theencoding
property perRSL6b
. This is intended for users receiving messages other than from a REST or Realtime channel (for example, from a queue), to avoid them having to parse theencoding
string themselves.
(DE1)
DeltaExtras
describes a message whose payload is a “vcdiff”-encoded delta generated with respect to a base message.(DE2)
DeltaExtras
has the following attributes:(DE2a)
from
string – the ID of the base message the delta was generated from(DE2b)
format
string – the delta format; currently only “vcdiff” is allowed
(TP1)
APresenceMessage
represents an individual presence message to be sent or received via the Ably Realtime service.(TP2)
PresenceMessage
Action
enum has the following values in order from zero:ABSENT
,PRESENT
,ENTER
,LEAVE
,UPDATE
(TP3)
The attributes available in aPresenceMessage
are:(TP3a)
id
string – unique ID for this presence message. This attribute is always populated for presence messages received over REST. For presence messages received over Realtime, if the presence message does not contain anid
, it should be set toprotocolMsgId:index
, whereprotocolMsgId
is the id of theProtocolMessage
encapsulating it, andindex
is the index of the presence message inside thepresence
array of theProtocolMessage
(TP3b)
action
enum(TP3c)
clientId
string(TP3d)
connectionId
string. If a presence message received from Ably does not contain aconnectionId
, it should be set to theconnectionId
of the encapsulatingProtocolMessage
(TP3e)
data
string, buffer or JSON-encodable object or array(TP3f)
encoding
string(TP3i)
extras
JSON-encodable object, used to contain any arbitrary key value pairs which may also contain other primitive JSON types, JSON-encodable objects or JSON-encodable arrays. Theextras
field is provided to contain message metadata and/or ancillary payloads in support of specific functionality. For 1.1 no specific functionality is specified forextras
in presence messages; 1.2 adds theheaders
extension, which contains arbitrarystring->string
key-value pairs, settable at publish time. Unless otherwise specified, the client library should not attempt to do any filtering or validation of theextras
field itself, but should treat it opaquely, encoding it and passing it to realtime unaltered.(TP3g)
timestamp
time in milliseconds since epoch. If a presence message received from Ably does not contain atimestamp
, it should be set to thetimestamp
of the encapsulatingProtocolMessage
(TP3h)
memberKey
string function that combines theconnectionId
andclientId
ensuring multiple connected clients with the same clientId are uniquely identifiable
(TP4)
fromEncoded
andfromEncodedArray
are alternative constructors that take an (already deserialized)PresenceMessage
-like object (or array of such objects), and optionally achannelOptions
, and return aPresenceMessage
(or array of suchPresenceMessages
) that’s decoded and decrypted as specified inRSL6
, using the cipher in thechannelOptions
if the message is encrypted, with any residual transforms (ones that the library cannot decode or decrypt) left in theencoding
property perRSL6b
. This is intended for users receiving messages other than from a REST or Realtime channel (for example, from a queue), to avoid them having to parse theencoding
string themselves. This behaviour is the same as in(TM3)
.
(TR1)
AProtocolMessage
represents the type used to send and receive messages over the Realtime protocol. A ProtocolMessage always relates either to the connection or to a single channel only, but can contain multiple individual Messages or PresenceMessages.(TR2)
ProtocolMessage
Action
enum has the following values in order from zero:HEARTBEAT
,ACK
,NACK
,CONNECT
,CONNECTED
,DISCONNECT
,DISCONNECTED
,CLOSE
,CLOSED
,ERROR
,ATTACH
,ATTACHED
,DETACH
,DETACHED
,PRESENCE
,MESSAGE
,SYNC
,AUTH
(TR3)
ProtocolMessage
Flag
enum has the following values, where a flag with valuen
is defined to be set if the bitwise AND of theflags
field with2ⁿ
is nonzero(TR3a)
0:HAS_PRESENCE
(TR3b)
1:HAS_BACKLOG
(TR3c)
2:RESUMED
(TR3e)
4:TRANSIENT
(TR3f)
5:ATTACH_RESUME
(TR3q)
16:PRESENCE
(TR3r)
17:PUBLISH
(TR3s)
18:SUBSCRIBE
Synonymous withMESSAGE_SUBSCRIBE
. Retained for backward compatibility.(TR3u)
18:MESSAGE_SUBSCRIBE
Synonymous withSUBSCRIBE
. This variant should be preferred.(TR3t)
19:PRESENCE_SUBSCRIBE
(TR4)
The attributes available in aProtocolMessage
are:(TR4a)
action
enum(TR4n)
id
string, which will generally be of the formconnectionId:msgSerial
(TR4p)
auth
AuthDetails object used for auth, see RTC8(TR4b)
channel
string(TR4c)
channelSerial
string(TR4d)
connectionId
string(TR4f)
This clause has been deleted. It was valid up to and including specification version1.2
.(TR4o)
connectionDetails
ConnectionDetails
object – provides details on the constraints or defaults for the connection such as max message size, client ID or connection state TTL(TR4g)
count
integer(TR4h)
error
ErrorInfo
object(TR4i)
flags
integer. Contains one or more of the bit flags specified inTR3
(TR4j)
msgSerial
long(TR4k)
messages
Array ofMessage
objects(TR4l)
presence
Array ofPresenceMessage
objects(TR4m)
timestamp
time in milliseconds since epoch(TR4q)
params
Dict<String, String>
key-value pairs
(TG1)
APaginatedResult
is a type that represents a page of results from a paginated query. The response is accompanied by metadata that indicates the relative queries available(TG2)
PaginatedResult
wraps all message and presence history, stats and REST presence requests. Instantiating this type should not result in an error if paging headers are not returned from the REST API(TG3)
PaginatedResult#items
attribute contains a page of results (for example an Array ofMessage
objects for a channel history request)(TG4)
PaginatedResult#next
function returns a newPaginatedResult
loaded with the next page of results. If there are no further pages, thennull
is returned(TG5)
PaginatedResult#first
function returns a newPaginatedResult
for the first page of results(TG6)
PaginatedResult#hasNext
function returnstrue
if there are further pages(TG7)
PaginatedResult#isLast
function returnstrue
if this page is the last page i.e.!hasNext
(HP1)
AHttpPaginatedResponse
is a type that represents the response from an HTTP request containing an empty or JSON-encodable object response. Paginated queries are supported(HP2)
HttpPaginatedResponse
inherits fromPaginatedResult
and overridesnext
andfirst
so that a newHttpPaginatedResponse
is returned(HP3)
items
attribute is overriden so that an array ofJsonObject
objects are returned if the response is a JSON array. If the response is a single JSON object thenitems
returns an array with oneJsonObject
. If the response is empty, thenitems
returns an empty array.(HP4)
statusCode
is an integer attribute with the HTTP status code for the response(HP5)
success
is a boolean attribute which istrue
when the HTTP status code indicates success i.e.200 <= statusCode < 300
(HP6)
errorCode
is an integer attribute populated with the error code if theX-Ably-Errorcode
HTTP header is sent in the response(HP7)
errorMessage
is a string attribute populated with the error code if theX-Ably-Errormessage
HTTP header is sent in the response(HP8)
headers
is an Array of key value pairs for each response header
(TE1)
TokenRequest
is a type containing the token request details sent to the REST requestToken endpoint(TE2)
String attributeskeyName
,clientId
,nonce
andmac
(TE3)
capability
is a string attribute containing capabilities JSON stringified(TE5)
timestamp
long – The timestamp (in milliseconds since the epoch) of this request. Timestamps, in conjunction with thenonce
, are used to prevent requests from being replayed(TE4)
ttl
attribute represents time to live (expiry) of this token in milliseconds(TE6)
TokenRequest::fromJson
static factory method that accepts either aJsonObject
or a string (which should be parsed as a JSON string), and returns a newTokenRequest
. Statically typed languages (that expect theauthCallback
to result in a typedTokenRequest
object, rather than, say, a hashmap) must implement this; others may at their discretion.
(TD1)
TokenDetails
is a type containing the token request response from the REST requestToken endpoint(TD2)
TokenDetails#token
attribute contains the token string(TD3)
TokenDetails#expires
attribute contains the expiry time in milliseconds. Where idiomatic in the language, this can be a Date/Time object(TD4)
TokenDetails#issued
attribute contains the time the token was issued in milliseconds. Where idiomatic in the language, this can be a Date/Time object(TD5)
TokenDetails#capability
attribute contains the capability JSON stringified(TD6)
TokenDetails#clientId
attribute contains theclientId
assigned to the token. IfclientId
isnull
or omitted, then the token is prohibited from assuming aclientId
in any operations, however ifclientId
is a wildcard string'*'
, then the token is permitted to assume anyclientId
. Any other string value forclientId
implies that theclientId
is both enforced and assumed for all operations for this token(TD7)
TokenDetails::fromJson
static factory method that accepts either aJsonObject
or a string (which should be parsed as a JSON string), and returns a newTokenDetails
. Statically typed languages (that expect theauthCallback
to result in a typedTokenDetails
object, rather than, say, a hashmap) must implement this; others may at their discretion.
(TN1)
There is noTokenString
type but in this specification “token string” refers to a string containing a token for authentication with Ably. With the exception of RSC1a and RSA4f, token strings are handled opaquely by the library, and any use of token strings in the API and library must support any type of token string.(TN2)
A token string (referred to in this specification as an “Ably token string”) may be obtained as theTokenDetails#token
attribute of aTokenDetails
obtained in response to a request to the REST requestToken endpoint(TN3)
A token string (referred to in this specification as a “JWT token string”) may be a JSON Web Token satisfying the Ably requirements for JWTs.
(AD1)
AuthDetails
is a type used with anAUTH
protocol message to send authentication details(AD2)
AuthDetails#accessToken
attribute contains the token string
(TS1)
Stats
is a type encapsulating a statistics datapoint retrieved from the REST stats endpoint. See example statistics in JSON format(TS2)
This clause has been deleted. It was valid up to and including specification version 2.1.(TS12)
The attributes of aStats
object consist of:(TS12a)
intervalId
(property present in the JSON) – aString
(TS12b)
This clause has been replaced byTS12p
. It was valid up to and including specification version 2.1.(TS12p)
intervalTime
– a language-idiomaticTime
object, parsed from theintervalId
(TS12c)
unit
(property present in the JSON) – aString
or (if idiomatic) a value of the enumerable typeStatsIntervalGranularity
whose permitted values areminute
,hour
,day
, andmonth
. This must be from theunit
property of the JSON, not calculated from theintervalId
(TS12q)
inProgress
(property present in the JSON) – an optionalString
containing the last sub-interval included in this entry (in format yyyy-mm-dd:hh:mm) for entries that are still in progress, such as the current month(TS12r)
entries
(property present in the JSON) – aDict<String, int>
containing statistics entries(TS12s)
schema
(property present in the JSON) – aString
containing the JSON schema URI(TS12t)
appId
(property present in the JSON) – aString
containing the ID of the Ably application the statistics are for.(TS12d)
This clause has been deleted. It was valid up to and including specification version 2.1.(TS12e)
This clause has been deleted. It was valid up to and including specification version 2.1.(TS12f)
This clause has been deleted. It was valid up to and including specification version 2.1.(TS12g)
This clause has been deleted. It was valid up to and including specification version 2.1.(TS12h)
This clause has been deleted. It was valid up to and including specification version 2.1.(TS12i)
This clause has been deleted. It was valid up to and including specification version 2.1.(TS12j)
This clause has been deleted. It was valid up to and including specification version 2.1.(TS12k)
This clause has been deleted. It was valid up to and including specification version 2.1.(TS12l)
This clause has been deleted. It was valid up to and including specification version 2.1.(TS12m)
This clause has been deleted. It was valid up to and including specification version 2.1.(TS12n)
This clause has been deleted. It was valid up to and including specification version 2.1.(TS12o)
This clause has been deleted. It was valid up to and including specification version 2.1.
(TS3)
This clause has been deleted.(TS4)
This clause has been deleted. It was valid up to and including specification version 2.1.(TS5)
This clause has been deleted. It was valid up to and including specification version 2.1.(TS6)
This clause has been deleted. It was valid up to and including specification version 2.1.(TS7)
This clause has been deleted. It was valid up to and including specification version 2.1.(TS8)
This clause has been deleted. It was valid up to and including specification version 2.1.(TS9)
This clause has been deleted. It was valid up to and including specification version 2.1.(TS10)
This clause has been deleted. It was valid up to and including specification version 2.1.(TS11)
This clause has been deleted. It was valid up to and including specification version 2.1.(TS13)
This clause has been deleted. It was valid up to and including specification version 2.1.(TS14)
This clause has been deleted. It was valid up to and including specification version 2.1.
(TI1)
Provides a generic AblyErrorInfo
object that contains Ablycode
,statusCode
(analogous to HTTP status code),message
, optionalcause
, optionalhref
, and optionalrequestId
(RSC7c
) attributes(TI2)
Errors returned from the Ably server are compatible with theErrorInfo
structure and should result in errors that inherit fromErrorInfo
(TI3)
Ably-common should be included as a submodule so that consistent error codes can be used(TI4)
Ably may additionally include ahref
attribute with a string value. This is included for REST responses to provide a URL for customers to find more help on the error code(TI5)
Log entries generated from errors, where possible, should include a URL to help developers understand the error and resolve the issue. If the URL is not already present within the contents of themessage
attribute, then it should be included in the log entry as follows: “See[URL]
”. If thehref
attribute is present, it should be used as the URL. If thehref
attribute is not present, and thecode
attribute is present, then the URL should be constructed as follows “https://help.ably.io/error/[CODE]
”. If neither thehref
orcode
attributes are present, then an additional URL should not be included in the log entry.
(TA1)
Whenever the connection state changes, aConnectionStateChange
object is emitted on theConnection
object(TA2)
TheConnectionStateChange
object contains the current state in attributecurrent
, the previous state in attributeprevious
, and when the client is not connected and a connection attempt will be made automatically by the library, the amount of time in milliseconds until the next retry in the attributeretryIn
(TA5)
TheConnectionStateChange
object contains theevent
that generated the connection state change(TA3)
If the connection state change includes error information, then thereason
attribute will contain anErrorInfo
object describing the reason for the error
(TH1)
Whenever the channel state changes, aChannelStateChange
object is emitted on theRealtimeChannel
object(TH2)
TheChannelStateChange
object contains the current state in attributecurrent
, the previous state in attributeprevious
(TH5)
TheConnectionStateChange
object contains theevent
that generated the channel state change(TH3)
If the channel state change includes error information, then thereason
attribute will contain anErrorInfo
object describing the reason for the error(TH4)
TheChannelStateChange
object contains an attributeresumed
which in combination with anATTACHED
state, indicates whether the channel attach successfully resumed its state following the connection being resumed or recovered. Ifresumed
is true, then the attribute indicates that the attach within Ably successfully recovered the state for the channel, and as such there is no loss of message continuity. In all other cases,resumed
is false, and may be accompanied with a channel state change error reason(TH6)
TheChannelStateChange
object may contain an attributehasBacklog
which, upon transitioning toATTACHED
, indicates whether the channel should expect a backlog of messages from a resume or rewind. This attribute should be set as defined byRTL2i
.
(TC1)
This type represents a capability for a key or token(TC2)
For now a string representation of the JSON will suffice wherevercapability
is used
(CD1)
Connection details are optionally passed to the client library in theCONNECTED
ProtocolMessage#connectionDetails
attribute to inform the client about any constraints it should adhere to, and provide additional metadata about the connection. For example, if a request is made to publish a message that exceeds themaxMessageSize
, the client library can reject the message immediately, without communicating with the Ably service(CD2)
Attributes available inConnectionDetails
:(CD2a)
clientId
contains the client ID assigned to the token. IfclientId
isnull
or omitted, then the client is prohibited from assuming aclientId
in any operations, however ifclientId
is a wildcard string'*'
, then the client is permitted to assume anyclientId
. Any other string value forclientId
implies that theclientId
is both enforced and assumed for all operations from this client(CD2b)
connectionKey
is the connection secret key string that is used to resume a connection and its state.(CD2c)
maxMessageSize
overrides the defaultmaxMessageSize
(TO3l8)(CD2d)
maxFrameSize
overrides the defaultmaxFrameSize
(TO3l8)(CD2e)
maxInboundRate
is the maximum allowable number of requests per second from a client or Ably. In the case of a realtime connection, this restriction applies to the number ofProtocolMessage
objects sent, whereas in the case of REST, it is the total number of REST requests per second(CD2f)
connectionStateTtl
is the duration that Ably will persist the connection state when a Realtime client is abruptly disconnected(CD2g)
serverId
string is a unique identifier for the front-end server that the client has connected to. This server ID is only used for the purposes of debugging(CD2h)
maxIdleInterval
is the maximum length of time in milliseconds that the server will allow no activity to occur in the server→client direction. After such a period of inactivity, the server will send aHEARTBEAT
or transport-level ping to the client. If the value is 0, the server will allow arbitrarily-long levels of inactivity.
(CP1)
properties of a channel and its state(CP2)
The attributes ofChannelProperties
consist of:
(CHD1)
ChannelDetails
is a type that represents information for a channel including channelId, status and occupancy(CHD2)
The attributes ofChannelDetails
consist of:(CHD2a)
channelId
string – the identifier of the channel(CHD2b)
status
ChannelStatus
– the status of the channel
(CHS1)
ChannelStatus
is a type that contains status and occupancy for a channel(CHS2)
The attributes ofChannelStatus
consist of:(CHS2a)
isActive
boolean – represents if the channel is active. (Currently just always true since getting metrics activates the channel, so not very useful)(CHS2b)
occupancy
ChannelOccupancy
– occupancy is an object containing the metrics for the channel
(CHO1)
Is a type that contain channel metrics(CH02)
This clause has been renamed to #CHO2.(CHO2)
The attributes ofChannelOccupancy
consist of:(CHO2a)
metrics@ChannelMetrics
(CHM1)
ChannelMetrics
is a type that contains the count of publishers and subscribers, connections and presenceConnections, presenceMembers and presenceSubscribers(CHM2)
The attributes ofChannelMetrics
consist of:(CHM2a)
connections
integer – the total number of realtime attachments, that is, realtime connections which are attached to the channel(CHM2b)
presenceConnections
integer – the number of realtime attachments which are permitted to enter presence, whether or not they have currently done so(CHM2c)
presenceMembers
integer – the number of members in the presence set of channel (note: may be larger than presenceConnections since a given connection may enter the presence set multiple times with different clientIds)(CHM2d)
presenceSubscribers
integer – the number of realtime attachments which are receiving presence messages on the channel (that is, they have the `subscribe` capability and have not specified aChannelMode
that excludesPRESENCE_SUBSCRIBE
)(CHM2e)
publishers
integer – the number of realtime attachments which are able to publish messages to the channel (that is, they have the `publish` capability and have not specified aChannelMode
that excludesPUBLISH
)(CHM2f)
subscribers
integer – the number of realtime attachments which are receiving messages on the channel (that is, they have the `subscribe` capability and have not specified aChannelMode
that excludesSUBSCRIBE
or synonymouslyMESSAGE_SUBSCRIBE
)
(BAR1)
Contains information about the results of a batch operation(BAR2)
The attributes ofBatchResult
consist of:(BAR2a)
successCount
number – the number of successful operations(BAR2b)
failureCount
number – the number of unsuccessful operations(BAR2c)
results
array – an array of results for the batch operation
(BSP1)
Describes the messages that should be published by a batch publish operation, and the channels to which they should be published(BSP2)
The attributes ofBatchPublishSpec
consist of:(BSP2a)
channels
an array of strings – the names of the channels to which all of the messages contained in themessages
attribute should be published(BSP2b)
messages
an array ofMessage
objects – the messages which should be published to all of the channels named by thechannels
array
(BPR1)
Contains information about the result of successful publishes to a channel requested by a singleBatchPublishSpec
(BPR2)
The attributes ofBatchPublishSuccessResult
consist of:(BPR2a)
channel
string – the name of the channel(BPR2b)
messageId
string – a string containing themessageId
prefix for the published message(s)
(BPF1)
Contains information about the result of unsuccessful publishes to a channel requested by a singleBatchPublishSpec
(BPF2)
The attributes ofBatchPublishFailureResult
consist of:(BPF2a)
channel
string – the name of the channel(BPF2b)
error
ErrorInfo
– anErrorInfo
indicating the reason the message(s) failed to publish
(BGR1)
Contains information about the result of a successful batch presence request for a single channel(BGR2)
The attributes ofBatchPresenceSuccessResult
consist of:(BGR2a)
channel
string – the name of the channel(BGR2b)
presence
PresenceMessage[]
– an array containing all members present on the channel
(BGF1)
Contains information about the result of an unsuccessful batch presence request for a single channel(BGF2)
The attributes ofBatchPresenceFailureResult
consist of:(BGF2a)
channel
string – the name of the channel(BGF2b)
error
ErrorInfo
–ErrorInfo
indicating the reason the presence request failed for the given channel
(TRT1)
Describes which tokens should be affected by a token revocation request(TRT2)
The attributes ofTokenRevocationTargetSpecifier
consist of:(TRT2a)
type
string – the type of token revocation target specifier (eg. “clientId”, “revocationKey”, “channel”)(TRT2b)
value
string – the value of the token revocation target specifier
(TRS1)
Contains information about the result of a successful token revocation request for a single target specifier(TRS2)
The attributes ofTokenRevocationSuccessResult
consist of:(TRS2a)
target
string – the target specifier(TRS2b)
appliesAt
Time – a timestamp at which the token revocation will take effect(TRS2c)
issuedBefore
Time – a timestamp for which tokens previously issued will be revoked
(TRF1)
Contains information about the result of an unsuccessful token revocation request for a single target specifier(TRF2)
The attributes ofTokenRevocationFailureResult
consist of:(TRF2a)
target
string – the target specifier(TRF2b)
error
ErrorInfo
– anErrorInfo
indicating the reason the token revocation request failed for the given specified
(MFI1)
Supplies filter options to subscribe as defined in #RTL22(MFI2)
Contains the following attributes:(MFI2a)
isRef
– A boolean for checking if a message contains anextras.ref
field(MFI2b)
refTimeserial
– A string for checking if a message’sextras.ref.timeserial
matches the supplied value(MFI2c)
refType
– A string for checking if a message’sextras.ref.type
matches the supplied value(MFI2d)
name
– A string for checking if a message’sname
matches the supplied value(MFI2e)
clientId
– A string for checking if a message’sclientId
matches the supplied value
(REX1)
Is an object attached to theextras
field of a message to reference a previous message.(REX2)
Contains the following fields:(REX2a)
timeserial
– Thetimeserial
of the message being referenced(REX2b)
type
– The type of reference, user defined(REX2b1)
Should be written in reverse domain name notation(REX2b2)
Types beginning withcom.ably.
are reserved
(TO1)
Ably library options used when instantiating a REST or Realtime client(TO2)
Note:ClientOptions
does not currently define a default for max message size or request size. This will be added in the future to ensure that REST requests does not exceed the limits before the request is made to the server. In the case of realtime, the connection constraints will be sent to the client in the initialCONNECTED
ProtocolMessage
(TO3)
The attributes ofClientOptions
consist of:(TO3a)
clientId
string – the id of the client represented by this instance(TO3b)
logLevel
– controls the level of verbosity of log messages from the library. The implementation of this is likely to vary by platform(TO3c)
logHandler
– allows the client to intercept log messages and handle them in a client-specific way. The implementation of this is likely to vary by platform(TO3m)
logExceptionReportingUrl
(deprecated) – defaults to a string value for an Ably error reporting DSN (Data Source Name), which is typically a URL in the formathttps://[KEY]:[SECRET]@errors.ably.io/[ID]
. When set tonull
,false
or an empty string (depending on what is idiomatic for the platform), exception reporting is disabled(TO3d)
tls
boolean – defaults to true. If false, will not use TLS for all connections(TO3e)
autoConnect
boolean – defaults to true. If false, suppresses the automatic initiation of a connection when the library is instantiated(TO3f)
useBinaryProtocol
boolean – defaults to true. If false, forces the library to use the JSON encoding for REST and Realtime operations, instead of the default binary msgpack encoding(TO3g)
queueMessages
boolean – defaults to true. If false, suppresses the default queueing ofMESSAGE
orPRESENCE
protocol messages. See RTL6c for connection and channel state condition details(TO3h)
echoMessages
boolean – defaults to true. If false, suppresses messages originating from this connection being echoed back on the same connection(TO3i)
recover
string – A connection recovery string, specified with the intention of inheriting the state of an earlier connection(TO3n)
idempotentRestPublishing
boolean – defaults to false for clients with version < 1.2, otherwise true. If true, RSL1k applies(TO3j)
Auth option attributes:(TO3j1)
key
string – Full Ably key string as obtained from dashboard(TO3j2)
token
string |TokenDetails
|TokenRequest
– An authentication token issued for this application, either in the form of a token string, aTokenDetails
object, or aTokenRequest
object(TO3j3)
tokenDetails
TokenDetails
– An authentication token issued for this application(TO3j4)
useTokenAuth
boolean – When true, token authentication will always be used by the client. IfclientId
is unspecified, then the token issued will inherently be anonymous i.e. it will contain an emptyclientId
(TO3j5)
authCallback
– A callback to call to obtain a signedTokenRequest
,TokenDetails
or a token string. This enables a client to obtain token requests or tokens from another entity, so tokens can be renewed without the client requiring a key. If a JSON-encodable object is provided in the callback, then the library will determine if it’s aTokenDetails
(if it contains atoken
key) orTokenRequest
(notoken
key) and use thefromJson
method (TD7, TE6) to construct an object(TO3j6)
authUrl
string – A URL to query to obtain a signedTokenRequest
,TokenDetails
or a token string. This enables a client to obtain token request or token from another entity, so tokens can be renewed without the client requiring a key(TO3j7)
authMethod
– The HTTP verb to be used when a request is made by the library to theauthUrl
. Defaults toGET
, supportsGET
andPOST
(TO3j8)
authHeaders
– Headers to be included in any request made by the library to theauthUrl
(TO3j9)
authParams
– Additional params to be included in any request made by the library to theauthUrl
, either as query params added to the URL in the case ofGET
, or form-encoded in the body in the case ofPOST
(TO3j10)
queryTime
– If true, the library will when issuing a token request query the Ably system for the current time instead of relying on a locally-available time of day(TO3j11)
defaultTokenParams
– When a TokenParams object is provided, it will override the client library defaults described in TokenParams
(TO3k)
Development environment attributes:(TO3k1)
environment
string – for development environments only; allows a non-default Ably environment to be used such assandbox
(TO3k2)
restHost
string – for development environments only; allows a non-default Ably REST host to be specified. It is never valid to provide both arestHost
andenvironment
value(TO3k3)
realtimeHost
string – for development environments only; allows a non-default Ably Realtime host to be specified. It is never valid to provide both arealtimeHost
andenvironment
value(TO3k6)
fallbackHosts
string array – optionally allows one or more fallback hosts to be used instead of the default fallback hosts. If an empty array is specified, then fallback host functionality is disabled(TO3k7)
fallbackHostsUseDefault
boolean (deprecated) – optionally allows the default fallback hosts[a-e].ably-realtime.com
to be used whenenvironment
is not production or a custom realtime or REST host endpoint is being used. It is never valid to configurefallbackHost
and setfallbackHostsUseDefault
totrue
. ThefallbackHostsUseDefault
option is deprecated and future library releases will ignore any supplied value(TO3k4)
port
integer – for development environments only; allows a non-default Ably non-TLS port to be specified(TO3k5)
tlsPort
integer – for development environments only; allows a non-default Ably TLS port to be specified
(TO3l)
The follow attributes, if set, are used to change the default behavior of the library:(TO3l1)
disconnectedRetryTimeout
integer – default 15,000 (15s). When the connection enters theDISCONNECTED
state, after this delay in milliseconds, if the state is stillDISCONNECTED
, the client library will attempt to reconnect automatically(TO3l2)
suspendedRetryTimeout
integer – default 30,000 (30s). When the connection enters theSUSPENDED
state, after this delay in milliseconds, if the state is stillSUSPENDED
, the client library will attempt to reconnect automatically(TO3l7)
channelRetryTimeout
integer – default 15,000 (15s). When a channel becomesSUSPENDED
following a server initiatedDETACHED
, after this delay in milliseconds, if the channel is stillSUSPENDED
and the connection isCONNECTED
, the client library will attempt to re-attach the channel automatically(TO3l3)
httpOpenTimeout
integer – default 4,000 (4s). Timeout for opening the connection, available in the client library if supported by the transport(TO3l4)
httpRequestTimeout
integer – default 10,000 (10s). Timeout for any single HTTP request and response(TO3l11)
realtimeRequestTimeout
integer – default 10,000 (10s). When a realtime client library is establishing a connection with Ably, or sending aHEARTBEAT
,CONNECT
,ATTACH
,DETACH
orCLOSE
ProtocolMessage
to Ably, this is the amount of time that the client library will wait before considering that request as failed and triggering a suitable failure condition(TO3l5)
httpMaxRetryCount
integer – default 3. Max number of fallback hosts to use as a fallback when an HTTP request to the primary host is unreachable or indicates that it is unserviceable(TO3l6)
httpMaxRetryDuration
integer – default 15,000 (15s). Max elapsed time in which fallback host retries for HTTP requests will be attempted i.e. if the first default host attempt takes 7s, and then the subsequent fallback retry attempt takes 10s, no further fallback host attempts will be made as the total elapsed time of 17s exceeds the default 15s limit(TO3l8)
maxMessageSize
integer – default 65536 (64KiB). The maximum size of messages that can be published in one go. That is, the size of theProtocolMessage.messages
orProtocolMessage.presence
array for a realtime publish or presence action, or the message or array of messages being published for a REST publish. For realtime publishes, the default will be overridden by themaxMessageSize
in theconnectionDetails
, see CD2c(TO3l8a)
The size is defined as the sum over all messages being published of the messagename
,data
,clientId
, andextras
(TO3l8b)
The size of anObject
orArray
data
property is its string length after being JSON-stringified(TO3l8c)
The size of abinary
data
property is its size in bytes (of the actual binary, not the base64 representation, regardless of whether the binary protocol is in use)(TO3l8d)
The size of theextras
property is the string length of its JSON representation(TO3l8e)
The size of anull
or omitted property is zero
(TO3l9)
maxFrameSize
integer – default 524288 (512KiB). The maximum size of a single POST body or WebSocket frame. This is mostly only relevant for `RestClient#request` (e.g. for batch publishes), since publishes will hit themaxMessageSize
limit before this(TO3l10)
fallbackRetryTimeout
integer – default 600000 (10 minutes). (After a failed request to the default endpoint, followed by a successful request to a fallback endpoint), the period in milliseconds before HTTP requests are retried against the default endpoint
(TO3o)
plugins
Dict<PluginType:Plugin>
A map between aPluginType
and aPlugin
object. The client library might downcast aPlugin
to particular plugin type.(TO3p)
addRequestIds
boolean – defaults to false. If true,RSC7c
applies(TO3q)
transportParams
[String: Stringifiable]? – defaults to null. Described in RTC1f
(TK1)
A class providing parameters of a token request. These params are used when invokingAuth#authorize
,Auth#requestToken
andAuth#createTokenRequest
(TK2)
The attributes ofTokenParams
consist of:(TK2a)
ttl
long – Requested time to live for the token in milliseconds. When omitted, Ably will default to a TTL of 60 minutes(TK2b)
capability
string – Capability requirements JSON stringified for the token. When omitted, Ably will default to the capabilities of the underlying key(TK2c)
clientId
string – AclientId
string to associate with this token. IfclientId
isnull
or omitted, then the token is prohibited from assuming aclientId
in any operations, however ifclientId
is a wildcard string'*'
, then the token is permitted to assume anyclientId
. Any other string value forclientId
implies that theclientId
is both enforced and assumed for all operations for this token(TK2d)
timestamp
long – The timestamp (in milliseconds since the epoch) of this request. Timestamps, in conjunction with thenonce
, are used to prevent requests from being replayed.timestamp
is a “one-time” value, and is valid in a request, but is not validly a member of any default token params such asClientOptions#defaultTokenParams
(TK2e)
nonce
optional string – Used to prevent against replay attacks. If not provided, then the library will automatically generate one if needed, as described by RSA9c.
(AO1)
A class providing configurable authentication options used when authenticating or issuing tokens explicitly. These options are used when invokingAuth#authorize
,Auth#requestToken
,Auth#createTokenRequest
andAuth#authorize
(AO2)
The attributes ofAuthOptions
consist of:(AO2a)
key
string – Full Ably key string, as obtained from dashboard, used when signing token requests locally(AO2b)
authCallback
– A callback to call to obtain a signedTokenRequest
,TokenDetails
or a token string. This enables a client to obtain token requests or tokens from another entity, so tokens can be renewed without the client requiring a key. If a JSON-encodable object is provided in the callback, then the library will determine if it’s aTokenDetails
(if it contains atoken
key) orTokenRequest
(notoken
key) and use thefromJson
method (TD7, TE6) to construct an object(AO2h)
token
string – An authentication token string issued for this application(AO2i)
tokenDetails
TokenDetails
– An authentication token (token string plus associated details, perTD1
) issued for this application(AO2c)
authUrl
string – A URL to query to obtain a signedTokenRequest
,TokenDetails
or a token string. This enables a client to obtain token request or token from another entity, so tokens can be renewed without the client requiring a key(AO2d)
authMethod
– The HTTP verb to be used when a request is made by the library to theauthUrl
. Defaults toGET
, supportsGET
andPOST
(AO2e)
authHeaders
– Headers to be included in any request made by the library to theauthUrl
(AO2f)
authParams
– Additional params to be included in any request made by the library to theauthUrl
, either as query params in the case ofGET
, or form-encoded in the body in the case ofPOST
(AO2g)
queryTime
– If true, the library will when issuing a token request query the Ably system for the current time instead of relying on a locally-available time of day(AO2j)
useTokenAuth
optional boolean – When true, token authentication will always be used by the client. See RSA4, TO3j4
(TB1)
options provided when instantiating a channel(TB2)
The attributes ofChannelOptions
consist of:(TB2b)
cipher
, which is either:(TB2b1)
ACipherParams
instance, or(TB2b2)
ACipherParamOptions
instance. In this case, the client library should callgetDefaultParams
, passing it the options hash, to obtain aCipherParams
instance
(TB2c)
params
(for realtime client libraries only) aDict<string,string>
of key/value pairs(TB2d)
modes
(for realtime client libraries only) an array ofChannelMode
s, where aChannelMode
is a member of an enum containing the names of those children ofTR3
whose value is ≥16 (or see the IDL below)(TB4)
attachOnSubscribe
(for realtime client libraries only) a boolean which determines whether callingsubscribe
on a channel or presence object should trigger an implicit attach. Defaults totrue
.
(TB3)
The client lib may optionally provide an alternative constructorwithCipherKey
for ChannelOptions that takes akey
only. (This must be differentiated from the normal constructor such that it is clear that the value being passed in is a key). (This is intended for languages where requiring a hash map is unidiomatic)
(DO1)
options provided to create a derive channel(DO2)
The attributes of deriveDeriveOptions
consists of:(DO2a)
filter
(string) – A JMESPath string for filter expression.
(TZ1)
params to configure encryption for a channel(TZ2)
The attributes ofCipherParams
consist of anything necessary to implement the supported algorithms, in addition to the following standardised attributes:(TZ2a)
algorithm
string – Default isAES
. Optionally specify the algorithm to use for encryption, currently onlyAES
is supported(TZ2b)
keyLength
integer – the length in bits of thekey
; for example 128 or 256(TZ2d)
key
binary – private key used to encrypt and decrypt payloads(TZ2c)
mode
string – Default isCBC
. Optionally specify cipher mode, currently onlyCBC
is supported
(CO1)
Values used for creating aCipherParams
instance. Depending on the language, may be implemented as a hashmap or a class.(CO2)
The attributes ofCipherParamOptions
consist of:(CO2a)
algorithm
(optional) string – the algorithm to use for encryption; currently the only supported non-null value isAES
(CO2b)
key
binary or string – private key used to encrypt and decrypt payloads(CO2c)
keyLength
(optional) integer – the length in bits of thekey
; for example 128 or 256(C02d)
mode
(optional) string – the cipher mode; currently the only supported non-null value isCBC
(PCS1)
details of a push subscription to a channel, consisting of the following attributes:(PCS2)
deviceId string – (optional, populated for subscriptions made for a specific device registration)(PCS3)
clientId string – (optional, populated for subscriptions made for a specificclientId
)(PCS4)
channel string – the channel name associated with this subscription(PCS5)
precisely one ofdeviceId
orclientId
must be non-null – this should be enforced by a mechanism appropriate to the language, for example one constructor that takes a device ID and one that takes a client ID
(PCD1)
details of a registered device, consisting of the following attributes:(PCD2)
id string – the id of the device registration(PCD3)
clientId string – (optional, populated for device registrations associated with aclientId
)(PCD4)
formFactor – the device formfactor, one ofphone
,tablet
,desktop
,tv
,watch
,car
,embedded
,other
(PCD5)
metadata – a map of string key/value pairs containing any other registered metadata associated with the device registration(PCD6)
platform – the device platform, one ofandroid
,ios
,browser
(PCD7)
push DevicePushDetails – details of the push registration for this device
(PCP1)
details of the push registration for a given device, consisting of the following attributes:(PCP2)
errorReason ErrorInfo – (optional) any error information associated with the registration(PCP3)
recipient – a map of string key/value pairs containing details of the push transport and address(PCP4)
state – the state of the push registration, one ofActive
,Failing
,Failed
(CR1)
Provides information about the client library and the environment in which it’s running.(CR2)
agents
static property:(CR2a)
Returns aDict<String, String?>
that lists the default key-value entries that the library uses to populate theAgent
library identifier, as described byRSC7d1
. An example would be{ "ably-java": "1.2.1", "android": "24" }
.
(CR3)
agentIdentifier
static method:(CR3a)
The client library must only offer this method if it offers theClientOptions#agents
property described byRSC7d6
.(CR3b)
Returns theAgent
library identifier described byRSC7d
.(CR3c)
Accepts anadditionalAgents
parameter of typeDict<String, String?>?
, whose value is to be interpreted with the same semantics as theClientOptions#agents
property. TheagentIdentifier
method will inject these agents into theAgent
library identifier that it returns.(CR3d)
An API commentary must be provided for this method. This commentary must make it clear that this interface is only to be used by Ably-authored SDKs.
The following default values are configured for the client library:
(DF1)
Realtime defaults:(DF1a)
connectionStateTtl
integer – default 120s. The duration that Ably will persist the connection state when a Realtime client is abruptly disconnected. When the client is in theDISCONNECTED
state, once this TTL has passed, the client should transition the state to theSUSPENDED
state signifying that the state is now lost i.e. channels need to be re-attached manually. Note that this default is overriden byconnectionStateTtl
, if specified in theConnectionDetails
of theCONNECTED
ProtocolMessage
(DF1b)
This clause has been replaced by TO3l11.
The following bespoke IDL (Interface Definition Language) describes the types and classes present in the REST and Realtime client libraries.
Please note the following conventions:
- Types are capitalized
- Attribute and method names are lowercase
- Attributes are denoted as
attributeName: Type
- Instance methods are denoted as
methodName(argName: Type, argName: Type) -> ReturnType
(ReturnType
may be omitted) - Callback functions / closures are denoted as
(argName: Type, argName: Type) -> ReturnType
(ReturnType
is usually omitted) - Values produced by I/O (e.g. a request) are prefixed with
=> io
. In some platforms (JS) those values are passed as arguments to a callback argument, instead of being returned. I/O always can fail, but how do they fail is undefined in the spec, so it’s also undefined here - Enums are denoted as
.A | .B | .C
Type?
denotes a nullable type[Type: Othertype]
denotes a map, hash or equivalent, or (if idiomatic) a list of 2-tuples.Type default value
denotes that the thing being annotated withType
hasvalue
as default.Type api-default value
denotes that the Ably server API uses those defaults and therefore it is unnecessary for the client library to send these default values to the API- Class fields (as opposed to instance fields) are prefixed with a
+
Duration
andTime
types are typically represented as milliseconds since the epoch. Where needed, a more idiomatic language specific duration may be used such asseconds
orTime
respectively for RubyData
is a message payload type, see RSL4a for a list of supported payload typesStringifiable
is a type used for unknown configuration parameters that need to be coerced to strings when used, see RTC1f for definitionJSONObject
andJSONArray
denote any type or interface in the target language that represents an RFC4627object
orarray
value respectively. Such types serialize to, and may be deserialized from, the corresponding JSON text. In the specification text above, values of these types are collectively referred to as “JSON-encodable”.
Each type, method, and attribute is labelled with the name of one or more clauses from the preceding feature spec. An asterisk is used as a wildcard to mean all clauses with a given prefix.
class RestClient: // RSC* constructor(keyOrTokenStr: String) // RSC1 constructor(ClientOptions) // RSC1 auth: Auth // RSC5 push: Push // RSC21 device() => io LocalDevice // RSH8 channels: Channels<RestChannel> // RSN1 request( String method, String path, Int version, Dict<String, String> params?, JsonObject | JsonArray body?, Dict<String, String> headers? ) => io HttpPaginatedResponse // RSC19 stats( start: Time api-default epoch(), // RSC6b1 end: Time api-default now(), // RSC6b1 direction: .Backwards | .Forwards api-default .Backwards, // RSC6b2 limit: int api-default 100, // RSC6b3 unit: .Minute | .Hour | .Day | .Month api-default .Minute // RSC6b4 ) => io PaginatedResult<Stats> // RSC6a time() => io Time // RSC16 batchPublish(BatchPublishSpec) => io BatchResult<BatchPublishSuccessResult | BatchPublishFailureResult> // RSC22 batchPublish(BatchPublishSpec[]) => io BatchResult<BatchPublishSuccessResult | BatchPublishFailureResult>[] // RSC22 batchPresence(string[]) => io BatchResult<BatchPresenceSuccessResult | BatchPresenceFailureResult> // RSC24 class RealtimeClient: // RTC* constructor(keyOrTokenStr: String) // RTC12 constructor(ClientOptions) // RTC12 auth: Auth // RTC4 push: Push // RTC13 device() => io LocalDevice // RSH8 channels: Channels<RealtimeChannel> // RTC3, RTS1 clientId: String? // RTC17 connection: Connection // RTC2 request( String method, String path, Dict<String, String> params?, JsonObject | JsonArray body?, Dict<String, String> headers? ) => io HttpPaginatedResponse // RTC9 stats( start: Time api-default epoch(), end: Time api-default now(), direction: .Backwards | .Forwards api-default .Backwards, limit: int api-default 100, unit: .Minute | .Hour | .Day | .Month api-default .Minute ) => io PaginatedResult<Stats> // Same as RestClient.stats, RTC5 close() // RTC16 connect() // RTC15 time() => io Time // RTC6 batchPublish(BatchPublishSpec) => io BatchResult<BatchPublishSuccessResult | BatchPublishFailureResult> // RSC22 batchPublish(BatchPublishSpec[]) => io BatchResult<BatchPublishSuccessResult | BatchPublishFailureResult>[] // RSC22 batchPresence(string[]) => io BatchResult<BatchPresenceSuccessResult | BatchPresenceFailureResult> // RSC24 class ClientOptions: // TO* embeds AuthOptions // This is not currently documented in the spec and needs to be – see https://github.com/ably/docs/issues/1476 autoConnect: Bool default true // RTC1b, TO3e clientId: String? // RSC17, RSA15, TO3a defaultTokenParams: TokenParams? // TO3j11 echoMessages: Bool default true // RTC1a, TO3h environment: String? // RSC15e, TO3k1 logHandler: // platform specific - TO3c logLevel: // platform specific - TO3b logExceptionReportingUrl: String default "[library specific]" // TO3m (deprecated) port: Int default 80 // TO3k4 queueMessages: Bool default true // RTP16b, TO3g restHost: String default "rest.ably.io" // RSC12, TO3k2 realtimeHost: String default "realtime.ably.io" // RTC1d, TO3k3 fallbackHosts: String[] default nil // RSC15b, RSC15a, TO3k6 fallbackHostsUseDefault: Bool default false // TO3k7 (deprecated) recover: String? // RTC1c, TO3i tls: Bool default true // RSC18, TO3d tlsPort: Int default 443 // TO3k5 useBinaryProtocol: Bool default true // TO3f transportParams: [String: Stringifiable]? // TO3q, RTC1f addRequestIds: Bool default false // TO3p // configurable retry and failure defaults disconnectedRetryTimeout: Duration default 15s // TO3l1 suspendedRetryTimeout: Duration default 30s // RTN14e, TO3l2 channelRetryTimeout: Duration default 15s // RTL13b, TO3l7 httpOpenTimeout: Duration default 4s // TO3l3 httpRequestTimeout: Duration default 10s // TO3l4 realtimeRequestTimeout: Duration default 10s // TO3l11 httpMaxRetryCount: Int default 3 // TO3l5 httpMaxRetryDuration: Duration default 15s // TO3l6 maxMessageSize: Int default 65536 // TO3l8 maxFrameSize: Int default 524288 // TO3l9 fallbackRetryTimeout: Duration default 600s // TO3l10 plugins: Dict<PluginType, Plugin> // TO3o idempotentRestPublishing: bool default true // RSL1k1, RTL6a1, TO3n agents: [String: String?]? // RSC7d6 - interface only offered by some libraries class AuthOptions: // AO* authCallback: ((TokenParams) -> io (String | TokenDetails | TokenRequest | JsonObject))? // RSA4a, RSA4, TO3j5, AO2b authHeaders: [String: Stringifiable]? // RSA8c3, TO3j8, AO2e authMethod: .GET | .POST default .GET // RSA8c, TO3j7, AO2d authParams: [String: Stringifiable]? // RSA8c3, RSA8c1, TO3j9, AO2f authUrl: String? // RSA4a, RSA4, RSA8c, TO3j6, AO2c key: String? // RSA11, RSA14, TO3j1, AO2a queryTime: Bool default false // RSA9d, TO3j10, AO2g token: String? | TokenDetails? | TokenRequest? // RSA4a, RSA4, TO3j2, AO2h tokenDetails: TokenDetails? // RSA4a, RSA4, TO3j3, AO2i useTokenAuth: Bool? // RSA4, RSA14, TO3j4, AO2j class TokenParams: // TK* capability: String api-default '{"*":["*"]}' // RSA9f, TK2b clientId: String? // TK2c nonce: String? // RSA9c, Tk2e timestamp: Time? // RSA9d, TK2d ttl: Duration api-default 60min // RSA9e, TK2a class Auth: // RSA* clientId: String? // RSA7, RSC17, RSA12 authorize(TokenParams?, AuthOptions?) => io TokenDetails // RSA10 createTokenRequest(TokenParams?, AuthOptions?) => io TokenRequest // RSA9 requestToken(TokenParams?, AuthOptions?) => io TokenDetails // RSA8 tokenDetails: TokenDetails? // RSA16 revokeTokens(TokenRevocationTargetSpecifier[], issuedBefore Time?, allowReauthMargin boolean?) => io BatchResult<TokenRevocationSuccessResult | TokenRevocationFailureResult> // RSA17 class TokenDetails: // TD* +fromJson(String | JsonObject) -> TokenDetails // TD7 capability: String // TD5 clientId: String? // TD6 expires: Time // TD3 issued: Time // TD4 token: String // TD2 class TokenRequest: // TE* +fromJson(String | JsonObject) -> TokenRequest // TE6 capability: String // TE3 clientId: String? // TE2 keyName: String // TE2 mac: String // TE2 nonce: String // TE2 timestamp: Time? // TE5 ttl: Duration? api-default 60min // TE4 class Channels<ChannelType>: // RSN*, RTS* exists(String) -> Bool // RSN2, RTS2 get(String) -> ChannelType // RSN3, RTS3 get(String, ChannelOptions) -> ChannelType // RSN3c, RTS3c iterate() -> Iterator<ChannelType> // RSN2, RTS2 release(String) // RSN4, RTS4 class RestChannel: // RSL* name: String // RSL9 presence: RestPresence // RSL3 history( start: Time, // RSL2b1 end: Time api-default now(), // RSL2b1 direction: .Backwards | .Forwards api-default .Backwards, // RSL2b2 limit: int api-default 100 // RSL2b3 ) => io PaginatedResult<Message> // RSL2 status() => ChannelDetails // RSL8 publish(Message, params?: Dict<String, Stringifiable>) => io // RSL1 publish([Message], params?: Dict<String, Stringifiable>) => io // RSL1 publish(name: String?, data: Data?) => io // RSL1 setOptions(options: ChannelOptions) => io // RSL7 - note asynchronous return value for // compatibility with RealtimeChannel#setOptions; not required for REST-only libraries // Only on platforms that support receiving push notifications: push: PushChannel // RSH7 class RealtimeChannel: // RTL* embeds EventEmitter<ChannelEvent, ChannelStateChange?> // RTL2, RTL2a, RTL2d name: String // RTL23 errorReason: ErrorInfo? // RTL24 state: ChannelState // RTL2b whenState(ChannelState, (ChannelStateChange?) ->) // RTL25 presence: RealtimePresence // RTL9 properties: ChannelProperties // RTL15 // Only on platforms that support receiving push notifications: push: PushChannel // RSH7 modes: readonly [ChannelMode] // RTL4m params: readonly Dict<String, String> // RTL4k1 attach() => io ChannelStateChange? // RTL4 detach() => io // RTL5 history( start: Time, // RTL10a end: Time api-default now(), // RTL10a direction: .Backwards | .Forwards api-default .Backwards, // RTL10a limit: int api-default 100, // RTL10a untilAttach: Bool default false // RTL10b ) => io PaginatedResult<Message> // RTL10 publish(Message) => io // RTL6, RTL6i publish([Message]) => io // RTL6, RTL6i publish(name: String?, data: Data?) => io // RTL6, RTL6i subscribe((Message) ->) => io ChannelStateChange? // RTL7, RTL7a subscribe(String, (Message) ->) => io ChannelStateChange? // RTL7, RTL7b subscribe(MessageFilter, (Message) ->) io ChannelStateChange? // RTL22 unsubscribe() // RTL8, RTL8c unsubscribe((Message) ->) // RTL8, RTL8a unsubscribe(String, (Message) ->) // RTL8, RTL8b unsubscribe(MessageFilter, (Message) ->) // RTL22 setOptions(options: ChannelOptions) => io // RTL16 class MessageFilter: // MFI* isRef: bool // MFI2a refTimeserial: string // MFI2b refType: string // MFI2c name: string // MFI2d class ChannelProperties: // CP* attachSerial: String // CP2a channelSerial: String // CP2b // Only on platforms that support receiving push notifications: class PushChannel: // RSH7 subscribeDevice() => io // RSH7a subscribeClient() => io // RSH7b unsubscribeDevice() => io // RSH7c unsubscribeClient() => io // RSH7d listSubscriptions(params?: Dict<String, String>) => io PaginatedResult<PushChannelSubscription> // RSH7e enum ChannelState: // RTL2 INITIALIZED ATTACHING ATTACHED DETACHING DETACHED SUSPENDED FAILED enum ChannelEvent: // RTL2 embeds ChannelState UPDATE // RTL2g enum ChannelMode: // TB2d PRESENCE PUBLISH SUBSCRIBE MESSAGE_SUBSCRIBE PRESENCE_SUBSCRIBE class ChannelStateChange: // TH* current: ChannelState // TH2, RTL2a, RTL2b event: ChannelEvent // TH5 previous: ChannelState // TH2, RTL2a, RTL2b reason: ErrorInfo? // TH3 resumed: Boolean // RTL2f, TH4 hasBacklog: Boolean // RTL2i, TH6 class ChannelOptions: // TB* +withCipherKey(key: Binary | String)? -> ChannelOptions // TB3 cipher: (CipherParams | CipherParamOptions)? // RSL5a, TB2b params?: Dict<String, String> // TB2c modes?: [ChannelMode] // TB2d class DeriveOptions: // DO* filter: String // DO2a (The filter string is a valid JMESPath String Expression) class ChannelDetails: // CHD* channelId: String // CHD2a status: ChannelStatus // CHD2b class ChannelStatus: // CHS* isActive: Boolean // CHS2a occupancy: ChannelOccupancy // CHS2b class ChannelOccupancy: // CHO* metrics: ChannelMetrics // CHO2a class ChannelMetrics: // CHM* connections: Int // CHM2a presenceConnections: Int // CHM2b presenceMembers: Int // CHM2c presenceSubscribers: Int // CHM2d publishers: Int // CHM2e subscribers: Int // CHM2f class CipherParams: // TZ* algorithm: String default "AES" // TZ2a key: Binary // TZ2d keyLength: Int // TZ2b mode: String default "CBC" // TZ2c class CipherParamOptions: // CO* (may be implemented as a hashmap or a class depending on language) algorithm?: String // CO2a key: Binary | String // CO2b keyLength?: Int // CO2c mode?: String // CO2d class Crypto: // RSE* +getDefaultParams(CipherParamOptions) -> CipherParams // RSE1 +generateRandomKey(keyLength: Int?) => io Binary // RSE2 class RestPresence: // RSP* get( limit: int api-default 100, // RSP3a clientId: String?, // RSP3a2 connectionId: String?, // RSP3a3 ) => io PaginatedResult<PresenceMessage> // RSP3 history( start: Time, // RSP4b1 end: Time api-default now(), // RSP4b1 direction: .Backwards | .Forwards api-default .Backwards, // RSP4b2 limit: int api-default 100, // RSP4b3 ) => io PaginatedResult<PresenceMessage> // RSP4 class RealtimePresence: // RTP* syncComplete: Bool // RTP13 get( waitForSync: Bool default true, // RTP11c1 clientId: String?, // RTP11c2 connectionId: String?, // RTP11c3 ) => io [PresenceMessage] // RTP11 history( start: Time, // RTP12a end: Time, // RTP12a direction: .Backwards | .Forwards api-default .Backwards, // RTP12a limit: int api-default 100, // RTP12a ) => io PaginatedResult<PresenceMessage> // RTP12 subscribe((PresenceMessage) ->) => io ChannelStateChange? // RTP6a subscribe(PresenceAction | [PresenceAction], (PresenceMessage) ->) => io ChannelStateChange? // RTP6b unsubscribe() // RTP7c unsubscribe((PresenceMessage) ->) // RTP7a unsubscribe(PresenceAction, (PresenceMessage) ->) // RTP7b // presence state modifiers enter(Data?, extras?: JsonObject) => io // RTP8 update(Data?, extras?: JsonObject) => io // RTP9 leave(Data?, extras?: JsonObject) => io // RTP10 enterClient(clientId: String, Data?, extras?: JsonObject) => io // RTP4, RTP14, RTP15 updateClient(clientId: String, Data?, extras?: JsonObject) => io // RTP15 leaveClient(clientId: String, Data?, extras?: JsonObject) => io // RTP15 enum PresenceAction: // TP2 ABSENT // TP2 PRESENT // TP2 ENTER // TP2 LEAVE // TP2 UPDATE // TP2 enum MessageAction: // TM5 MESSAGE_UNSET // TM5 MESSAGE_CREATE // TM5 MESSAGE_UPDATE // TM5 MESSAGE_DELETE // TM5 ANNOTATION_CREATE // TM5 ANNOTATION_DELETE // TM5 META_OCCUPANCY // TM5 class ConnectionDetails: // CD*, internal clientId: String? // RSA12a, CD2a connectionKey: String // RTN15e, CD2b connectionStateTtl: Duration // CD2f, RTN14e, DF1a maxFrameSize: Int // CD2d maxInboundRate: Int // CD2e maxMessageSize: Int // CD2c serverId: String // CD2g maxIdleInterval: Duration // CD2h class Message: // TM* constructor(name: String?, data: Data?) // TM4 constructor(name: String?, data: Data?, clientId: String?) // TM4 +fromEncoded(JsonObject, ChannelOptions?) -> Message // TM3 +fromEncodedArray(JsonArray, ChannelOptions?) -> [Message] // TM3 clientId: String? // TM2b connectionId: String? // TM2c connectionKey: String? // TM2h data: Data? // TM2d encoding: String? // TM2e extras: JsonObject? // TM2i id: String // TM2a name: String? // TM2g timestamp: Time // TM2f action: MessageAction // TM2j serial: string // TM2K refSerial: string? // TM2L refType: string? // TM2M operation: Object // TM2N updatedAt: Time? // TM2O updateSerial: string? // TM2P class PresenceMessage // TP* +fromEncoded(JsonObject, ChannelOptions?) -> PresenceMessage // TP4 +fromEncodedArray(JsonArray, ChannelOptions?) -> [PresenceMessage] // TP4 action: PresenceAction // TP3b clientId: String // TP3c connectionId: String // TP3d data: Data? // TP3e encoding: String? // TP3f extras: JsonObject? // TP3i id: String // TP3a timestamp: Time // TP3g memberKey() -> String // TP3h class ProtocolMessage: // internal action: ProtocolMessageAction // TR2, TR4a auth: AuthDetails? // channel: String? // TR4b channelSerial: String? // TR4c connectionDetails: ConnectionDetails? // RSA7b3, RTN19, TR4o connectionId: String? // RTN15c1, TR4d count: Int? // TR4g error: ErrorInfo? // RTN15c2, TR4h flags: Int? // TR4i; bitfield containing zero or more boolean flags specified in TR3 id: String? // TR4b messages: [Message]? // TR4k msgSerial: Int? // RTN7b, TR4j presence: [PresenceMessage]? // TR4l timestamp: Time? // TR4m params: Dict<String, String>? // TR4q, RTL4k enum ProtocolMessageAction: // internal HEARTBEAT // TR2 ACK // TR2 NACK // TR2 CONNECT // TR2 CONNECTED // TR2 DISCONNECT // TR2 DISCONNECTED // TR2 CLOSE // TR2 CLOSED // TR2 ERROR // TR2 ATTACH // TR2 ATTACHED // TR2 DETACH // TR2 DETACHED // TR2 PRESENCE // TR2 MESSAGE // TR2 SYNC // TR2 AUTH // TR2 class AuthDetails: // AD* accessToken: String // AD2, RTC8a class Connection: // RTN* embeds EventEmitter<ConnectionEvent, ConnectionStateChange> // RTN4a, RTN4e errorReason: ErrorInfo? // RTN25 id: String? // RTN8 key: String? // RTN9 createRecoveryKey(): String? // RTN16g state: ConnectionState // RTN4d whenState(ConnectionState, (ConnectionStateChange?) ->) // RTN26 close() // RTN12 connect() // RTC1b, RTN3, RTN11 ping() => io Duration // RTN13 enum ConnectionState: // RTN4 INITIALIZED CONNECTING CONNECTED DISCONNECTED SUSPENDED CLOSING CLOSED FAILED enum ConnectionEvent: // RTN4 embeds ConnectionState UPDATE // RTN4h class ConnectionStateChange: // TA* current: ConnectionState // TA2 event: ConnectionEvent // TA5 previous: ConnectionState // TA2 reason: ErrorInfo? // RTN4f, TA3 retryIn: Duration? // RTN14d, TA2 class Stats: // TS12 intervalId: String // TS12a intervalTime: Time // TS12p (calculated client-side) unit: Stats.IntervalGranularity // TS12c inProgress: String? // TS12q entries: Dict<String, Int> // TS12r schema: String // TS12s appId: String // TS12t enum StatsIntervalGranularity: // TS12c MINUTE HOUR DAY MONTH class DeviceDetails: // PCD* id: String // PCD2 clientId: String? // PCD3 formFactor: DeviceFormFactor // PCD4 metadata: JsonObject // PCD5 platform: DevicePlatform // PCD6 push: DevicePushDetails // PCD7 class DevicePushDetails: // PCP* errorReason: ErrorInfo? // PCP2 recipient: JsonObject // PCP3 state: .Active | .Failing | .Failed // PCP4 class LocalDevice extends DeviceDetails: // RSH8* deviceIdentityToken: String // RSH8k1 deviceSecret: String // RSH8k2 class Push: RSH1, RSH2 admin: PushAdmin // RSH1 // Only on platforms that support receiving push notifications: activate( registerCallback: ((ErrorInfo?, DeviceDetails?) -> io String)?, // Only on platforms that, after first set, can update later its push // device details: updateFailedCallback: ((ErrorInfo) ->), // Deprecated, see RSH3e3a and RSH3e3d updatedCallback: ((ErrorInfo?) ->)? ) => io ErrorInfo? // RSH2a deactivate( deregisterCallback: ((ErrorInfo?, deviceId: String?) -> io)? ) => io ErrorInfo? // RSH2b class PushAdmin: // RSH1 publish(recipient: JsonObject, data: JsonObject) => io // RSH1a deviceRegistrations: PushDeviceRegistrations // RSH1b channelSubscriptions: PushChannelSubscriptions // RSH1c class PushDeviceRegistrations: // RSH1b get(deviceId: String) => io DeviceDetails // RSH1b1 list(params: Dict<String, String>) => io PaginatedResult<DeviceDetails> // RSH1b2 save(DeviceDetails) => io DeviceDetails // RSH1b3 remove(deviceId: String) => io // RSH1b4 removeWhere(params: Dict<String, String>) => io // RSH1b5 class PushChannelSubscriptions: // RSH1c list(params: Dict<String, String>) => io PaginatedResult<PushChannelSubscription> // RSH1c1 listChannels(params: Dict<String, String>?) => io PaginatedResult<String> // RSH1c2 save(PushChannelSubscription) => io PushChannelSubscription // RSH1c3 remove(PushChannelSubscription) => io // RSH1c4 removeWhere(params: Dict<String, String>) => io // RSH1c5 enum DevicePlatform: // PCD6 "android" "ios" "browser" enum DeviceFormFactor: // PCD4 "phone" "tablet" "desktop" "tv" "watch" "car" "embedded" "other" class PushChannelSubscription: // PCS* +forDevice(channel: String, deviceId: String) => PushChannelSubscription // PSC5 +forClientId(channel: String, clientId: String) => PushChannelSubscription // PSC5 deviceId: String? // PCS2 clientId: String? // PCS3 channel: String // PCS4 class ErrorInfo: // TI* code: Int // TI1 href: String? // TI1, TI4 message: String // TI1 cause: ErrorInfo? // TI1 statusCode: Int // TI1 requestId: String? // TI1, RSC7c class EventEmitter<Event, Data>: // RTE* on((Data...) ->) // RTE3 on(Event, (Data...) ->) // RTE3 once((Data...) ->) // RTE4 once(Event, (Data...) ->) // RTE4 off() // RTE5 off((Data...) ->) // RTE5 off(Event, (Data...) ->) // RTE5 emit(Event, Data...) // internal, RTE6 class PaginatedResult<T>: // TG* items: [T] // TG3 first() => io PaginatedResult<T> // TG5 hasNext() -> Bool // TG6 isLast() -> Bool // TG7 next() => io PaginatedResult<T>? // TG4 class HttpPaginatedResponse // HP* embeds PaginatedResult<JsonObject> items: [JsonObject] // HP3 statusCode: Int // HP4 success: Bool // HP5 errorCode: Int // HP6 errorMessage: String // HP7 headers: Dict<String, String> // HP8 class Plugin // PC2 // Empty class/interface. Plugins are not expected to share any common interface. // An opaque base interface type for plugins is defined for type-safety in statically-typed languages. enum PluginType // PT* "vcdiff" // PT2a class VCDiffDecoder // VD* decode([byte] delta, [byte] base) -> [byte] // VD2a, PC3a class DeltaExtras // DE* from: String // DE2a format: String // DE2b class ReferenceExtras: // REX* timeserial: String // REX2a type: String //REX2b class ClientInformation: // CR* +agents: Dict<String, String?> // CR2 +agentIdentifier(additionalAgents: Dict<String, String?>?) => String // CR3; interface only offered by some libraries class BatchResult<T> successCount: number // BAR2a failureCount: number // BAR2b results: [T] // BAR2c class BatchPublishSpec: channels: [String] // BSP2a messages: [Message] //BSP2b class BatchPublishSuccessResult: channel: string // BPR2a messageId: string // BPR2b class BatchPublishFailureResult: channel: string // BPF2a error: ErrorInfo // BPF2c class BatchPresenceSuccessResult: channel: string // BGR2a presence: [PresenceMessage] // BGR2b class BatchPresenceFailureResult channel: string // BGF2a error: ErrorInfo // BGF2b class TokenRevocationTargetSpecifier: type: string // TRT2a value: string // TRT2b class TokenRevocationSuccessResult: target: string // TRS2a appliesAt: Time // TRS2b issuedBefore: Time // TRS2c class TokenRevocationFailureResult: target: string // TRF2a error: ErrorInfo // TRF2b
Use the version navigation to view older versions. References to diffs for each version are maintained below:
- v1.1 deprecated in Mar 2020. View 1.1 → 1.2 changes
- v1.0 deprecated in Jan 2019. View 1.0 → 1.1 changes
- v0.8 deprecated in Jan 2017. View 0.8 → 1.0 changes