Class: EventQ::SerializationProviders::JRuby::Oj::HashWriter

Inherits:
AttributeWriter
  • Object
show all
Defined in:
lib/eventq_base/serialization_providers/jruby/oj/hash_writer.rb

Instance Method Summary collapse

Methods inherited from AttributeWriter

descendants, exec

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

Returns:

  • (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