Package de.fhkn.in.uce.stun.server.connectionhandling

Examples of de.fhkn.in.uce.stun.server.connectionhandling.HandleMessageTaskFactory


     *            the public secondary/alternate (local) address
     */
    public StunServer(final InetSocketAddress primaryAddress, final InetSocketAddress secondaryAddress) {
        this.primaryAddress = primaryAddress;
        this.secondaryAddress = secondaryAddress;
        this.handleMessageTaskFactory = new HandleMessageTaskFactory(this.primaryAddress, this.secondaryAddress);
        this.handleExecutor = Executors.newCachedThreadPool();
        this.socketListenerExecutor = Executors.newCachedThreadPool();
    }
View Full Code Here

TOP

Related Classes of de.fhkn.in.uce.stun.server.connectionhandling.HandleMessageTaskFactory

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.