Class: EventQ::SerializationProviders::JRuby::Oj::RationalWriter

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

Instance Method Summary collapse

Methods inherited from AttributeWriter

descendants, exec

Instance Method Details

#exec(obj) ⇒ Object



9
10
11
12
13
14
15
# File 'lib/eventq_base/serialization_providers/jruby/oj/rational_writer.rb', line 9

def exec(obj)
  {
    '^O': 'Rational',
    numerator: obj.numerator,
    denominator: obj.denominator
  }
end

#valid?(obj) ⇒ Boolean

Returns:

  • (Boolean)


6
7
8
# File 'lib/eventq_base/serialization_providers/jruby/oj/rational_writer.rb', line 6

def valid?(obj)
  obj.is_a?(Rational)
end