Methods
D
L
N
Included Modules
Class Public methods
new( parser = nil, writer = nil )

instance methods —————————-

# File ../ruby/lib/xmlrpc/marshal.rb, line 46
def initialize( parser = nil, writer = nil )
  set_parser( parser )
  set_writer( writer )
end
Instance Public methods
dump_call( methodName, *params )
# File ../ruby/lib/xmlrpc/marshal.rb, line 23
def dump_call( methodName, *params )
  new.dump_call( methodName, *params )
end
dump_response( param )
# File ../ruby/lib/xmlrpc/marshal.rb, line 27
def dump_response( param )
  new.dump_response( param )
end
load_call( stringOrReadable )
# File ../ruby/lib/xmlrpc/marshal.rb, line 31
def load_call( stringOrReadable )
  new.load_call( stringOrReadable )
end
load_response( stringOrReadable )
# File ../ruby/lib/xmlrpc/marshal.rb, line 35
def load_response( stringOrReadable )
  new.load_response( stringOrReadable )
end