vote up 0 vote down star

Hi all, I'd like to have some cleanup code run when Rails is shutting down - is that possible? My situation is that I have a few threads in the background (I'm using jruby and calling into java) that live for the life of the process and I need to let them know to shut themselves down

Thanks!

flag

1 Answer

vote up 3 vote down check

Probably should just use the Ruby exit handler, which is a Kernel method:

$ irb
>> at_exit do
?>   puts 'bye...'
>> end
=> #<Proc:0xb79a87e4@(irb):1>
>> exit
bye...
$
link|flag
Awesome, thanks! – Stuart Oct 23 at 0:48
Where would you put this code though? – Radar Oct 23 at 2:06
As long as JRuby itself has a lifecycle corresponding to the underlying application server, then you can put it anywhere it will get run at least once. A good place would be to register the exit handler in whatever piece of Ruby code fires off those background threads in the first place. – DigitalRoss Oct 23 at 2:12
(If it does get called more than once the exit handlers will run more than once, however, so don't call it 30,000 times. :-) – DigitalRoss Oct 23 at 2:14
@Radar: My guess would be boot.rb. It's the first file read. – EmFi Oct 23 at 5:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.