Method: SWS::Component#sleep

Defined in:
lib/sws/component.rb

#sleepObject

A generic method used for per-request deinitialization of the component. Called at the very end of handling response process. Default implementation does recursively nothing :) - that is, it calls the sleep() method for all subcomponents and their subcomponents and their…



278
279
280
# File 'lib/sws/component.rb', line 278

def sleep ()
	@subcomponents.each { |com| com.sleep() }
end