Module: Ably

Defined in:
lib/ably/modules/ably.rb,
lib/ably/auth.rb,
lib/ably/rest.rb,
lib/ably/agent.rb,
lib/ably/logger.rb,
lib/ably/version.rb,
lib/ably/realtime.rb,
lib/ably/rest/push.rb,
lib/ably/exceptions.rb,
lib/ably/rest/client.rb,
lib/ably/rest/channel.rb,
lib/ably/realtime/auth.rb,
lib/ably/realtime/push.rb,
lib/ably/rest/channels.rb,
lib/ably/rest/presence.rb,
lib/ably/realtime/client.rb,
lib/ably/realtime/channel.rb,
lib/ably/realtime/channels.rb,
lib/ably/realtime/connection.rb,
lib/ably/modules/event_emitter.rb,
lib/ably/rest/middleware/logger.rb,
lib/ably/modules/exception_codes.rb,
lib/ably/rest/middleware/encoder.rb,
lib/ably/rest/middleware/exceptions.rb,
lib/ably/rest/middleware/parse_json.rb,
lib/ably/models/message_encoders/base.rb,
lib/ably/realtime/recovery_key_context.rb,
lib/ably/rest/middleware/parse_message_pack.rb,
lib/ably/rest/middleware/external_exceptions.rb,
lib/ably/rest/middleware/fail_if_unsupported_mime_type.rb

Overview

frozen_string_literal: true

Defined Under Namespace

Modules: Exceptions, Models, Modules, Realtime, Rest, Util Classes: Auth, Logger

Constant Summary collapse

AGENT =
"ably-ruby/#{Ably::VERSION} ruby/#{RUBY_VERSION}"
VERSION =
'1.2.7'
PROTOCOL_VERSION =

The level of compatibility with the Ably service that this SDK supports. Also referred to as the ‘wire protocol version’. spec : CSV2

'2'
FALLBACK_DOMAIN =

Fallback hosts to use when a connection to rest/realtime.ably.io is not possible due to network failures either at the client, between the client and Ably, within an Ably data center, or at the IO domain registrar see ably.com/docs/client-lib-development-guide/features/#RSC15a

'ably-realtime.com'.freeze
FALLBACK_IDS =
%w(a b c d e).freeze
FALLBACK_HOSTS =

Default production fallbacks a.ably-realtime.com … e.ably-realtime.com

FALLBACK_IDS.map { |host| "#{host}.#{FALLBACK_DOMAIN}".freeze }.freeze
CUSTOM_ENVIRONMENT_FALLBACKS_SUFFIXES =

Custom environment default fallbacks ENV-a-fallback.ably-realtime.com … ENV-a-fallback.ably-realtime.com

FALLBACK_IDS.map do |host|
  "-#{host}-fallback.#{FALLBACK_DOMAIN}".freeze
end.freeze
INTERNET_CHECK =
{
  url:     '//internet-up.ably-realtime.com/is-the-internet-up.txt',
  ok_text: 'yes'
}.freeze