Methods
C
D
N
O
S
Attributes
[R] connected
[R] errors
[R] websocket
Class Public methods
new(*)
# File actioncable/test/connection/client_socket_test.rb, line 8
def initialize(*)
  super
  @errors = []
end
Instance Public methods
connect()
# File actioncable/test/connection/client_socket_test.rb, line 13
def connect
  @connected = true
end
disconnect()
# File actioncable/test/connection/client_socket_test.rb, line 17
def disconnect
  @connected = false
end
on_error(message)
# File actioncable/test/connection/client_socket_test.rb, line 25
def on_error(message)
  @errors << message
end
send_async(method, *args)
# File actioncable/test/connection/client_socket_test.rb, line 21
def send_async(method, *args)
  send method, *args
end