Sha256: 87681c253a8657587968440a87bfd0548a053c67b3bf0ea3db57a43304898ead
Contents?: true
Size: 626 Bytes
Versions: 16
Compression:
Stored size: 626 Bytes
Contents
module Ably::Realtime class Channel # Represents properties of a channel and its state class ChannelProperties # {Ably::Realtime::Channel} this object associated with # @return [Ably::Realtime::Channel] attr_reader :channel # Contains the last channelSerial received in an ATTACHED ProtocolMesage for the channel, see RTL15a # # @return [String] attr_reader :attach_serial def initialize(channel) @channel = channel end # @api private def set_attach_serial(attach_serial) @attach_serial = attach_serial end end end end
Version data entries
16 entries across 16 versions & 2 rubygems