import java.util.Properties;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorService;
-import java.util.concurrent.Future;
@Slf4j
private boolean running = false;
private long i = 0;
private long produced = 0;
- private Future<?> future = null;
public EndlessProducer(
ExecutorService executor,
}
catch (Exception e)
{
-
+ log.error("{} - Unexpected Exception:", id, e);
+ }
+ finally
+ {
+ synchronized (this)
+ {
+ running = false;
+ log.info("{} - Stopped - produced {} messages so far", id, produced);
+ }
}
}
log.info("{} - Starting - produced {} messages before", id, produced);
running = true;
- future = executor.submit(this);
+ executor.submit(this);
}
public synchronized void stop() throws ExecutionException, InterruptedException
log.info("{} - Stopping...", id);
running = false;
- future.get();
- log.info("{} - Stopped - produced {} messages so far", id, produced);
}
@PreDestroy