Class: Ably::Models::ConnectionDetails
- Inherits:
-
Object
- Object
- Ably::Models::ConnectionDetails
- Includes:
- Ably::Modules::ModelCommon
- Defined in:
- lib/ably/models/connection_details.rb
Overview
ConnectionDetails are optionally passed to the client library in the CONNECTED
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 the maxMessageSize
, the client library can reject the message immediately, without communicating with the Ably service
Instance Attribute Summary collapse
-
#attributes ⇒ Hash
readonly
Access the token details Hash object ruby’fied to use symbolized keys.
Attributes included from Ably::Modules::ModelCommon
Instance Method Summary collapse
- #has_client_id? ⇒ Boolean
-
#initialize(attributes = {}) ⇒ ConnectionDetails
constructor
A new instance of ConnectionDetails.
Methods included from Ably::Modules::ModelCommon
Methods included from Ably::Modules::MessagePack
Constructor Details
#initialize(attributes = {}) ⇒ ConnectionDetails
Returns a new instance of ConnectionDetails.
33 34 35 36 37 38 39 |
# File 'lib/ably/models/connection_details.rb', line 33 def initialize(attributes = {}) @hash_object = IdiomaticRubyWrapper(attributes.clone) if self.attributes[:connection_state_ttl] self.attributes[:connection_state_ttl] = (self.attributes[:connection_state_ttl].to_f / 1000).round end self.attributes.freeze end |
Instance Attribute Details
#attributes ⇒ Hash (readonly)
Returns Access the token details Hash object ruby’fied to use symbolized keys.
53 54 55 |
# File 'lib/ably/models/connection_details.rb', line 53 def attributes @hash_object end |
Instance Method Details
#has_client_id? ⇒ Boolean
47 48 49 |
# File 'lib/ably/models/connection_details.rb', line 47 def has_client_id? attributes.has_key?(:client_id) end |