Class: Wamp::Worker::Registration

Inherits:
Handle
  • Object
show all
Defined in:
lib/wamp/worker/config.rb

Instance Attribute Summary collapse

Attributes inherited from Handle

#klass, #method, #options

Instance Method Summary collapse

Constructor Details

#initialize(procedure, klass, method, options) ⇒ Registration

Returns a new instance of Registration.



25
26
27
28
# File 'lib/wamp/worker/config.rb', line 25

def initialize(procedure, klass, method, options)
  super klass, method, options
  @procedure = procedure
end

Instance Attribute Details

#procedureObject (readonly)

Returns the value of attribute procedure.



23
24
25
# File 'lib/wamp/worker/config.rb', line 23

def procedure
  @procedure
end