Parent

Methods

Files

Class/Module Index [+]

Quicksearch

SOAP::Parser::ParseFrame

Attributes

encodingstyle[R]
handler[R]
name[R]
node[R]
ns[R]

Public Class Methods

new(ns, name, node, encodingstyle, handler) click to toggle source
# File lib/soap/parser.rb, line 51
def initialize(ns, name, node, encodingstyle, handler)
  @ns = ns
  @name = name
  @node = NodeContainer.new(node)
  @encodingstyle = encodingstyle
  @handler = handler
end

Public Instance Methods

update(ns, name, node, encodingstyle, handler) click to toggle source

to avoid memory consumption

# File lib/soap/parser.rb, line 60
def update(ns, name, node, encodingstyle, handler)
  @ns = ns
  @name = name
  @node.replace_node(node)
  @encodingstyle = encodingstyle
  @handler = handler
  self
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.