class PusherClient::NullChannel

Public Class Methods

new(channel_name, *a) click to toggle source
# File lib/pusher-client/channel.rb, line 48
def initialize(channel_name, *a)
  @name = channel_name
end

Public Instance Methods

method_missing(*a) click to toggle source
# File lib/pusher-client/channel.rb, line 51
def method_missing(*a)
  raise ArgumentError, "Channel `#{@name}` hasn't been subscribed yet."
end