In Files

  • xmlrpc/marshal.rb

XMLRPC::Marshal

Public Class Methods

new( parser = nil, writer = nil ) click to toggle source

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

 
               # File xmlrpc/marshal.rb, line 46
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 23
def dump_call( methodName, *params )
  new.dump_call( methodName, *params )
end
            
dump_response( param ) click to toggle source
 
               # File xmlrpc/marshal.rb, line 27
def dump_response( param )
  new.dump_response( param )
end
            
load_call( stringOrReadable ) click to toggle source
 
               # File xmlrpc/marshal.rb, line 31
def load_call( stringOrReadable )
  new.load_call( stringOrReadable )
end
            
load_response( stringOrReadable ) click to toggle source
 
               # File xmlrpc/marshal.rb, line 35
def load_response( stringOrReadable )
  new.load_response( stringOrReadable )
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.

blog comments powered by Disqus