lib/ably/models/protocol_message.rb in ably-1.2.0 vs lib/ably/models/protocol_message.rb in ably-1.2.1

- old
+ new

@@ -1,18 +1,18 @@ module Ably::Models # A message sent and received over the Realtime protocol. # A ProtocolMessage always relates to a single channel only, but # can contain multiple individual Messages or PresenceMessages. # ProtocolMessages are serially numbered on a connection. - # See the {http://docs.ably.io/client-lib-development-guide/protocol/ Ably client library developer documentation} + # See the {http://ably.com/docs/client-lib-development-guide/protocol/ Ably client library developer documentation} # for further details on the members of a ProtocolMessage # # @!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] auth # @return [Ably::Models::AuthDetails] Authentication details used to perform authentication upgrades over an existing transport # @!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} + # @return [Integer] The count field is used for ACK and NACK actions. See {http://ably.com/docs/client-lib-development-guide/protocol/#message-acknowledgement message acknowledgement protocol} # @!attribute [r] error # @return [ErrorInfo] Contains error information # @!attribute [r] channel # @return [String] Channel name for messages # @!attribute [r] channel_serial