Methods
D
L
N
Included Modules
Class Public methods
new( parser = nil, writer = nil )
# File lib/xmlrpc/marshal.rb, line 41
def initialize( parser = nil, writer = nil )
  set_parser( parser )
  set_writer( writer )
end
Instance Public methods
dump_call( methodName, *params )
# File lib/xmlrpc/marshal.rb, line 20
def dump_call( methodName, *params )
  new.dump_call( methodName, *params )
end
dump_response( param )
# File lib/xmlrpc/marshal.rb, line 24
def dump_response( param )
  new.dump_response( param )
end
load_call( stringOrReadable )
# File lib/xmlrpc/marshal.rb, line 28
def load_call( stringOrReadable )
  new.load_call( stringOrReadable )
end
load_response( stringOrReadable )
# File lib/xmlrpc/marshal.rb, line 32
def load_response( stringOrReadable )
  new.load_response( stringOrReadable )
end