private final ServiceLifecycle lifecycle;
public DefaultAsyncConsumerActionExecutor(ConsumerActionExecutor actionExecutor, ExecutorFactory executorFactory) {
this.actionExecutor = actionExecutor;
executor = executorFactory.create("Connection worker");
lifecycle = new ServiceLifecycle(actionExecutor.getDisplayName());
}