/* * ************************************************************************************* * Copyright (C) 2008 EsperTech, Inc. All rights reserved. * * http://esper.codehaus.org * * http://www.espertech.com * * ---------------------------------------------------------------------------------- * * The software in this package is published under the terms of the GPL license * * a copy of which has been included with this distribution in the license.txt file. * * ************************************************************************************* */ package com.espertech.esper.multithread; import com.espertech.esper.client.EPServiceProvider; import java.util.concurrent.Callable; import java.util.concurrent.locks.ReentrantReadWriteLock; import java.util.Iterator; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; public class SendEventRWLockCallable implements Callable { private final int threadNum; private final EPServiceProvider engine; private final Iterator<Object> events; private final ReentrantReadWriteLock sharedStartLock; public SendEventRWLockCallable(int threadNum, ReentrantReadWriteLock sharedStartLock, EPServiceProvider engine, Iterator<Object> events) { this.threadNum = threadNum; this.engine = engine; this.events = events; this.sharedStartLock = sharedStartLock; } public Object call() throws Exception { sharedStartLock.readLock().lock(); log.info(".call Thread " + Thread.currentThread().getId() + " starting"); try { while (events.hasNext()) { engine.getEPRuntime().sendEvent(events.next()); } } catch (RuntimeException ex) { log.fatal("Error in thread " + threadNum, ex); return false; } log.info(".call Thread " + Thread.currentThread().getId() + " done"); sharedStartLock.readLock().unlock(); return true; } private static final Log log = LogFactory.getLog(SendEventRWLockCallable.class); }