Package de.fhkn.in.uce.mediator.peerregistry

Examples of de.fhkn.in.uce.mediator.peerregistry.UserCleanerTask


        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$
    }
View Full Code Here

TOP

Related Classes of de.fhkn.in.uce.mediator.peerregistry.UserCleanerTask

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.