Class: RubyHaze::TopicConfig

Inherits:
Object
  • Object
show all
Includes:
Mixins::Proxy
Defined in:
lib/rubyhaze/configs/topic.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) ⇒ TopicConfig

Returns a new instance of TopicConfig.



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

def initialize(name, options = nil)
  @proxy_object = Java::ComHazelcastConfig::TopicConfig.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/topic.rb', line 24

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

.default_optionsObject



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

def default_options
  {}
end