Sha256: 52a0a61c521e4d21b81f2264b1155d7220143a22482c32fad4c73d562f4c2911
Contents?: true
Size: 848 Bytes
Versions: 162
Compression:
Stored size: 848 Bytes
Contents
# frozen_string_literal: true module ActionCable module SubscriptionAdapter class Inline < Base # :nodoc: def initialize(*) super @subscriber_map = nil end def broadcast(channel, payload) subscriber_map.broadcast(channel, payload) end def subscribe(channel, callback, success_callback = nil) subscriber_map.add_subscriber(channel, callback, success_callback) end def unsubscribe(channel, callback) subscriber_map.remove_subscriber(channel, callback) end def shutdown # nothing to do end private def subscriber_map @subscriber_map || @server.mutex.synchronize { @subscriber_map ||= new_subscriber_map } end def new_subscriber_map SubscriberMap.new end end end end
Version data entries
162 entries across 157 versions & 12 rubygems