class ProxyService::NullWorker

Constants

NullMessage

Attributes

message[RW]

Public Class Methods

new() click to toggle source
# File lib/proxy_service/null_worker.rb, line 5
def initialize
  @message = NullMessage.new('{}')
end

Public Instance Methods

call(*) click to toggle source
# File lib/proxy_service/null_worker.rb, line 9
def call(*)
  # no-op
end
ready?() click to toggle source
# File lib/proxy_service/null_worker.rb, line 13
def ready?
  true
end
release(*) click to toggle source
# File lib/proxy_service/null_worker.rb, line 21
def release(*)
  # no-op
end
subscribe() click to toggle source
# File lib/proxy_service/null_worker.rb, line 17
def subscribe
  # no-op
end