Method: Cosmos::Conversion#call

Defined in:
lib/cosmos/conversions/conversion.rb

#call(value, packet, buffer) ⇒ Object

Perform the conversion on the value.

Parameters:

  • value (Object)

    The value to convert

  • packet (Packet)

    The packet which contains the value. This can be useful to reach into the packet and use other values in the conversion.

  • buffer (String)

    The packet buffer

Returns:

  • The converted value



46
47
48
# File 'lib/cosmos/conversions/conversion.rb', line 46

def call(value, packet, buffer)
  raise "call method must be defined by subclass"
end