Skip to content

Instantly share code, notes, and snippets.

@abstractj
Created October 7, 2011 17:35
Show Gist options
  • Save abstractj/1270880 to your computer and use it in GitHub Desktop.
Save abstractj/1270880 to your computer and use it in GitHub Desktop.
InterruptableJob
/*
* Copyright 2008-2011 Red Hat, Inc, and individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.torquebox.jobs;
import org.jboss.logging.Logger;
import org.jruby.Ruby;
import org.quartz.*;
import org.torquebox.core.component.ComponentResolver;
import org.torquebox.core.runtime.RubyRuntimePool;
import org.torquebox.jobs.component.JobComponent;
public class RubyJobProxy implements Job, StatefulJob, InterruptableJob {
public RubyJobProxy(RubyRuntimePool runtimePool, ComponentResolver resolver) {
this.runtimePool = runtimePool;
this.resolver = resolver;
}
@Override
public void execute(JobExecutionContext context) throws JobExecutionException {
Ruby ruby = null;
try {
ruby = this.runtimePool.borrowRuntime();
JobComponent job = (JobComponent)resolver.resolve( ruby );
job.run();
} catch (Exception e) {
throw new JobExecutionException( e );
} finally {
if (ruby != null) {
this.runtimePool.returnRuntime( ruby );
}
}
}
private RubyRuntimePool runtimePool;
private ComponentResolver resolver;
@SuppressWarnings("unused")
private static final Logger log = Logger.getLogger( "org.torquebox.jobs" );
@Override
public void interrupt() throws UnableToInterruptJobException {
//TODO Put your last wish here
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment