import javax.annotation.PreDestroy;
import java.time.Duration;
import java.util.Arrays;
+import java.util.Optional;
import java.util.Properties;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorService;
private final Lock lock = new ReentrantLock();
private final Condition condition = lock.newCondition();
private boolean running = false;
+ private Exception exception;
private long consumed = 0;
private KafkaConsumer<String, String> consumer = null;
catch(Exception e)
{
log.error("{} - Unexpected error: {}", id, e.toString(), e);
- shutdown();
+ shutdown(e);
}
finally
{
}
private void shutdown()
+ {
+ shutdown(null);
+ }
+
+ private void shutdown(Exception e)
{
lock.lock();
try
{
running = false;
+ exception = e;
condition.signal();
}
finally
log.info("{} - Starting - consumed {} messages before", id, consumed);
running = true;
+ exception = null;
executor.submit(this);
}
finally
log.info("{}: Consumed {} messages in total, exiting!", id, consumed);
}
}
+
+ public boolean running()
+ {
+ lock.lock();
+ try
+ {
+ return running;
+ }
+ finally
+ {
+ lock.unlock();
+ }
+ }
+
+ public Optional<Exception> exitStatus()
+ {
+ lock.lock();
+ try
+ {
+ if (running)
+ throw new IllegalStateException("No exit-status available: Consumer instance " + id + " is running!");
+
+ return Optional.ofNullable(exception);
+ }
+ finally
+ {
+ lock.unlock();
+ }
+ }
}