append

append(value, chain) Class Public methods

current_line

current_line() Instance Public methods @return the current line in the source

namespaceURI

namespaceURI() Instance Public methods BSTR namespaceURI the URI for the namespace applying to the node

version

version() Class Public methods Also aliased as: xshape_version

new

new(uri, soc, config, is_established) Class Public methods Create a DRb::DRbSSLSocket instance. uri is the URI we are connected to. soc is the tcp socket we are bound to. config is our configuration. Either a Hash or SSLConfig is_established is a boolean of whether soc is currenly established This is called automatically based on the DRb protocol.

convert

convert(version) Class Public methods Converts version into an HTTPVersion

next_wait

next_wait(nonblock = nil) Instance Public methods Waits until any of the specified threads has terminated, and returns the one that does. If there is no thread to wait, raises ErrNoWaitingThread. If nonblock is true, and there is no terminated thread, raises ErrNoFinishedThread.

configinfo 2

configinfo(slot=nil) Instance Public methods

record_location

record_location(top_level) Instance Public methods Record top_level as a file self is in.

each_pair

hsh.each_pair {| key, value | block } â hshhsh.each_pair â an_enumerator Instance Public methods Calls block once for each key in hsh, passing the key-value pair as parameters. If no block is given, an enumerator is returned instead. h = { "a" => 100, "b" => 200 } h.each {|key, value| puts "#{key} is #{value}" } produces: a is 100 b is 200