Class: XMLRPC::Marshal (Ruby 2.3.4)

In Files

  • xmlrpc/marshal.rb

XMLRPC::Marshal

Public Class Methods

dump( param )
Alias for: dump_response
dump_call( methodName, *params )
 
               # File xmlrpc/marshal.rb, line 21
def dump_call( methodName, *params )
  new.dump_call( methodName, *params )
end
            
dump_response( param )
 
               # File xmlrpc/marshal.rb, line 25
def dump_response( param )
  new.dump_response( param )
end
            
Also aliased as: dump
load( stringOrReadable )
Alias for: load_response
load_call( stringOrReadable )
 
               # File xmlrpc/marshal.rb, line 29
def load_call( stringOrReadable )
  new.load_call( stringOrReadable )
end
            
load_response( stringOrReadable )
 
               # File xmlrpc/marshal.rb, line 33
def load_response( stringOrReadable )
  new.load_response( stringOrReadable )
end
            
Also aliased as: load
new( parser = nil, writer = nil )
 
               # File xmlrpc/marshal.rb, line 42
def initialize( parser = nil, writer = nil )
  set_parser( parser )
  set_writer( writer )
end
            

Public Instance Methods

dump_call( methodName, *params )
 
               # File xmlrpc/marshal.rb, line 47
def dump_call( methodName, *params )
  create.methodCall( methodName, *params )
end
            
dump_response( param )
 
               # File xmlrpc/marshal.rb, line 51
def dump_response( param )
  create.methodResponse( ! param.kind_of?( XMLRPC::FaultException ) , param )
end
            
load_call( stringOrReadable )

Returns [ methodname, params ]

 
               # File xmlrpc/marshal.rb, line 56
def load_call( stringOrReadable )
  parser.parseMethodCall( stringOrReadable )
end
            
load_response( stringOrReadable )

Returns paramOrFault

 
               # File xmlrpc/marshal.rb, line 61
def load_response( stringOrReadable )
  parser.parseMethodResponse( stringOrReadable )[1]
end