Methods
C
L
P
R
Attributes
[RW] last_action
Instance Public methods
connection()
# File actioncable/test/worker_test.rb, line 15
def connection
  self
end
logger()
# File actioncable/test/worker_test.rb, line 19
def logger
  # Impersonating a connection requires a TaggedLoggerProxy'ied logger.
  inner_logger = Logger.new(StringIO.new).tap { |l| l.level = Logger::UNKNOWN }
  ActionCable::Connection::TaggedLoggerProxy.new(inner_logger, tags: [])
end
process(message)
# File actioncable/test/worker_test.rb, line 11
def process(message)
  @last_action =  [ :process, message ]
end
run()
# File actioncable/test/worker_test.rb, line 7
def run
  @last_action = :run
end