Class: RubyHaze::QueueConfig

Inherits:
Object
  • Object
show all
Includes:
Mixins::Proxy
Defined in:
lib/rubyhaze/configs/queue.rb

Instance Attribute Summary

Attributes included from Mixins::Proxy

#proxy_object

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Mixins::Proxy

included, #method_missing, #respond_to?

Constructor Details

#initialize(name, options = nil) ⇒ QueueConfig

Returns a new instance of QueueConfig.



11
12
13
14
15
16
# File 'lib/rubyhaze/configs/queue.rb', line 11

def initialize(name, options = nil)
  @proxy_object = Java::ComHazelcastConfig::QueueConfig.new
  self.name = name.to_s
  options ||= self.class.default_options
  options.each { |k,v| send "#{k}=", v }
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class RubyHaze::Mixins::Proxy

Class Method Details

.[](name) ⇒ Object



24
25
26
# File 'lib/rubyhaze/configs/queue.rb', line 24

def [](name)
  RubyHaze.config.queue_config name.to_s
end

.default_optionsObject



20
21
22
# File 'lib/rubyhaze/configs/queue.rb', line 20

def default_options
  { :max_size_per_jvm => 10000, :time_to_live_seconds => 0 }
end