Package org.jboss.xnio

Examples of org.jboss.xnio.TcpChannelDestination


            return new FailedFutureConnection<SocketAddress, TcpChannel>(e, dest);
        }
    }

    public TcpChannelDestination createChannelDestination(final SocketAddress dest) {
        return new TcpChannelDestination() {
            public FutureConnection<SocketAddress, TcpChannel> accept(final IoHandler<? super TcpChannel> handler) {
                return acceptTo(dest, handler);
            }
        };
    }
View Full Code Here

TOP

Related Classes of org.jboss.xnio.TcpChannelDestination

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.