class Wamp::Worker::Handle

region Storage Objects

Attributes

klass[R]
method[R]
options[R]

Public Class Methods

new(klass, method, options) click to toggle source
# File lib/wamp/worker/config.rb, line 11
def initialize(klass, method, options)
  @klass = klass
  @method = method
  @options = options

  unless klass.ancestors.include? BaseHandler
    raise(ArgumentError, "'klass' must be a Wamp::Worker::Handler type")
  end
end