this.socketListenerExecutor.execute(socketListener);
logger.info("Message handling started, mediator is listening on port {}", this.listenerPort); //$NON-NLS-1$
}
private void startUserCleaner() {
final UserCleanerTask userCleanerTask = new UserCleanerTask(this.iterationTimeInSeconds,
this.maxLifetimeInSeconds);
this.cleanerExecutor.execute(userCleanerTask);
logger.info(
"User cleaner started with iteration {} and max lifetime {}", this.iterationTimeInSeconds, this.maxLifetimeInSeconds); //$NON-NLS-1$
}