In Files

  • xmlrpc/marshal.rb

XMLRPC::Marshal

Public Class Methods

dump( param ) click to toggle source
Alias for: dump_response
dump_call( methodName, *params ) click to toggle source
 
               # File xmlrpc/marshal.rb, line 21
def dump_call( methodName, *params )
  new.dump_call( methodName, *params )
end
            
dump_response( param ) click to toggle source
 
               # File xmlrpc/marshal.rb, line 25
def dump_response( param )
  new.dump_response( param )
end
            
Also aliased as: dump
load( stringOrReadable ) click to toggle source
Alias for: load_response
load_call( stringOrReadable ) click to toggle source
 
               # File xmlrpc/marshal.rb, line 29
def load_call( stringOrReadable )
  new.load_call( stringOrReadable )
end
            
load_response( stringOrReadable ) click to toggle source
 
               # File xmlrpc/marshal.rb, line 33
def load_response( stringOrReadable )
  new.load_response( stringOrReadable )
end
            
Also aliased as: load
new( parser = nil, writer = nil ) click to toggle source
 
               # 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 ) click to toggle source
 
               # File xmlrpc/marshal.rb, line 47
def dump_call( methodName, *params )
  create.methodCall( methodName, *params )
end
            
dump_response( param ) click to toggle source
 
               # File xmlrpc/marshal.rb, line 51
def dump_response( param )
  create.methodResponse( ! param.kind_of?( XMLRPC::FaultException ) , param )
end
            
load_call( stringOrReadable ) click to toggle source

Returns [ methodname, params ]

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

Returns paramOrFault

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

Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.

If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.

If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.

If you want to help improve the Ruby documentation, please visit Documenting-ruby.org.