Method: Fix::Protocol::Field#dump

Defined in:
lib/fix/protocol/field.rb

#dumpString

Returns the field as a message fragment

Returns:

  • (String)

    A message fragment terminated by the separator byte



26
27
28
# File 'lib/fix/protocol/field.rb', line 26

def dump
  @value && "#{tag}=#{@value}\x01"
end