Method: RubyApp::Session.stop_thread!
- Defined in:
- lib/ruby_app/session.rb
.stop_thread! ⇒ Object
201 202 203 204 205 206 207 |
# File 'lib/ruby_app/session.rb', line 201 def self.stop_thread! if @@_thread ||= nil RubyApp::Log.debug("SESSION #{RubyApp::Log.prefix(self, __method__)}") @@_thread.exit @@_thread = nil end end |