lib/submodules/ably-ruby/lib/ably/models/protocol_message.rb in ably-rest-0.8.5 vs lib/submodules/ably-ruby/lib/ably/models/protocol_message.rb in ably-rest-0.8.6
- old
+ new
@@ -8,16 +8,16 @@
#
# @!attribute [r] action
# @return [ACTION] Protocol Message action {Ably::Modules::Enum} from list of {ACTION}. Returns nil if action is unsupported by protocol
# @!attribute [r] count
# @return [Integer] The count field is used for ACK and NACK actions. See {http://docs.ably.io/client-lib-development-guide/protocol/#message-acknowledgement message acknowledgement protocol}
- # @!attribute [r] error_info
+ # @!attribute [r] error
# @return [ErrorInfo] Contains error information
# @!attribute [r] channel
# @return [String] Channel name for messages
# @!attribute [r] channel_serial
- # @return [String] Contains a serial number for a message on the current channel
+ # @return [String] Contains a serial number for a message on the current channelÆ’
# @!attribute [r] connection_id
# @return [String] Contains a string public identifier for the connection
# @!attribute [r] connection_key
# @return [String] Contains a string private connection key used to recover this connection
# @!attribute [r] connection_serial
@@ -86,16 +86,22 @@
@hash_object[:action] = ACTION(@hash_object[:action]).to_i unless @hash_object[:action].kind_of?(Integer)
@hash_object.freeze
end
- %w(id channel channel_serial connection_id connection_key).each do |attribute|
+ %w(id channel channel_serial connection_id).each do |attribute|
define_method attribute do
hash[attribute.to_sym]
end
end
+ def connection_key
+ # connection_key in connection details takes precedence over connection_key on the ProtocolMessage
+ # connection_key in the ProtocolMessage will be deprecated in future protocol versions > 0.8
+ connection_details.connection_key || hash[:connection_key]
+ end
+
def id!
raise RuntimeError, 'ProtocolMessage #id is nil' unless id
id
end
@@ -104,11 +110,11 @@
rescue KeyError
raise KeyError, "Action '#{hash[:action]}' is not supported by ProtocolMessage"
end
def error
- @error_info ||= ErrorInfo.new(hash[:error]) if hash[:error]
+ @error ||= ErrorInfo.new(hash[:error]) if hash[:error]
end
def timestamp
as_time_from_epoch(hash[:timestamp]) if hash[:timestamp]
end
@@ -177,9 +183,13 @@
0
end
def has_presence_flag?
flags & 1 == 1
+ end
+
+ def connection_details
+ @connection_details ||= Ably::Models::ConnectionDetails(hash[:connection_details])
end
# Indicates this protocol message will generate an ACK response when sent
# Examples of protocol messages required ACK include :message and :presence
def ack_required?