Package org.apache.mina.io.socket

Examples of org.apache.mina.io.socket.SocketAcceptor


        registry = new SimpleServiceRegistry();

        try {
            Service service = new Service(SERVICE_NAME, TransportType.SOCKET, port);
            registry.bind(service, httpIOHandler);
            SocketAcceptor acceptor = (SocketAcceptor) registry.getIoAcceptor(TransportType.SOCKET);
            configureFilters(acceptor);
            acceptor.setExceptionMonitor(new LoggingExceptionMonitor());
            LOG.info("NIO HTTP Transport bound on port " + port);
        } catch (IOException e) {
            throw new TransportException("NIOTransport Failed to bind to port " + port, e);
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.mina.io.socket.SocketAcceptor

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.