Class: Hx::Interop::Marshaler

Inherits:
Object
  • Object
show all
Defined in:
lib/interop/marshaler.rb

Overview

Base class for message content marshalers.

Constant Summary collapse

NULL =
new

Instance Method Summary collapse

Instance Method Details

#dump(str) ⇒ Object



11
12
13
# File 'lib/interop/marshaler.rb', line 11

def dump(str)
  str
end

#load(str) ⇒ Object



7
8
9
# File 'lib/interop/marshaler.rb', line 7

def load(str)
  str
end