Class: EventQ::SerializationProviders::JRuby::Oj::HashWriter
- Inherits:
-
AttributeWriter
- Object
- AttributeWriter
- EventQ::SerializationProviders::JRuby::Oj::HashWriter
- Defined in:
- lib/eventq_base/serialization_providers/jruby/oj/hash_writer.rb
Instance Method Summary collapse
Methods inherited from AttributeWriter
Instance Method Details
#exec(obj) ⇒ Object
9 10 11 12 13 |
# File 'lib/eventq_base/serialization_providers/jruby/oj/hash_writer.rb', line 9 def exec(obj) obj.each do |key, value| obj[key] = AttributeWriter.exec(value) end end |
#valid?(obj) ⇒ Boolean
6 7 8 |
# File 'lib/eventq_base/serialization_providers/jruby/oj/hash_writer.rb', line 6 def valid?(obj) obj.is_a?(Hash) end |