reset_locking_column

reset_locking_column() Instance Public methods Reset the column used for optimistic locking back to the lock_version default.

new

new() Class Public methods

delete

delete(tuple) Instance Public methods Removes tuple from the TupleBag.

signame

Signal.signame(signo) â string Class Public methods convert signal number to signal name Signal.trap("INT") { |signo| puts Signal.signame(signo) } Process.kill("INT", 0) produces: INT

join

join(*threads) Instance Public methods Waits for specified threads to terminate, and returns when one of the threads terminated.

world_coordinates

world_coordinates(*args) Instance Public methods

path

path() Instance Public methods Returns the path from an FTP URI. RFC 1738 specifically states that the path for an FTP URI does not include the / which separates the URI path from the URI host. Example: ftp://ftp.example.com/pub/ruby The above URI indicates that the client should connect to ftp.example.com then cd pub/ruby from the initial login directory. If you want to cd to an absolute directory, you must include an escaped / (%2F) in the path. Example: ftp://ftp.example.com/%2

display_prerequisites

display_prerequisites() Instance Public methods Display the tasks and prerequisites

detach

Process.detach(pid) â thread Class Public methods Some operating systems retain the status of terminated child processes until the parent collects that status (normally using some variant of wait(). If the parent never collects this status, the child stays around as a zombie process. Process::detach prevents this by setting up a separate Ruby thread whose sole job is to reap the status of the process pid when it terminates. Use detach only when you do not intent to explicitly wa

xhtml=

xhtml=(content) Instance Public methods