XNIO API 2.1.0.CR2

Uses of Interface
org.jboss.xnio.channels.BoundChannel

Packages that use BoundChannel
org.jboss.xnio The main API package for XNIO. 
org.jboss.xnio.channels Defines an enhanced set of channels. 
 

Uses of BoundChannel in org.jboss.xnio
 

Classes in org.jboss.xnio with type parameters of type BoundChannel
 interface AcceptingServer<A,T extends BoundChannel<A>,C extends ConnectedChannel<A>>
          A server which accepts connections.
 

Methods in org.jboss.xnio that return types with arguments of type BoundChannel
 ChannelListener.Setter<? extends BoundChannel<InetSocketAddress>> TcpServer.getBindSetter()
          Get the bind listener setter for this channel.
 ChannelListener.Setter<? extends BoundChannel<InetSocketAddress>> SslTcpServer.getBindSetter()
          Get the bind listener setter for this channel.
 ChannelListener.Setter<? extends BoundChannel<String>> LocalServer.getBindSetter()
          Get the bind listener setter for this channel.
 ChannelListener.Setter<? extends AcceptingServer<String,BoundChannel<String>,LocalChannel>> LocalServer.getCloseSetter()
          Get the setter which can be used to change the close listener for this channel.
 

Method parameters in org.jboss.xnio with type arguments of type BoundChannel
 IoFuture<T> ChannelDestination.accept(ChannelListener<? super T> openListener, ChannelListener<? super BoundChannel<A>> bindListener)
          Accept a connection.
 IoFuture<T> Acceptor.acceptTo(A dest, ChannelListener<? super T> openListener, ChannelListener<? super BoundChannel<A>> bindListener)
          Accept a connection at a destination address.
 IoFuture<T> Connector.connectTo(A dest, ChannelListener<? super T> openListener, ChannelListener<? super BoundChannel<A>> bindListener)
          Establish a connection to a destination.
 IoFuture<SslTcpChannel> SslTcpConnector.connectTo(InetSocketAddress destination, ChannelListener<? super SslTcpChannel> openListener, ChannelListener<? super BoundChannel<InetSocketAddress>> bindListener)
          Establish a connection to an SSL TCP server.
 IoFuture<TcpChannel> TcpConnector.connectTo(InetSocketAddress destination, ChannelListener<? super TcpChannel> openListener, ChannelListener<? super BoundChannel<InetSocketAddress>> bindListener)
          Establish a connection to a TCP server.
 

Uses of BoundChannel in org.jboss.xnio.channels
 

Classes in org.jboss.xnio.channels with type parameters of type BoundChannel
 interface BoundServer<A,T extends BoundChannel<A>>
          A server that is bound to a local address, and which may accept connections.
 

Subinterfaces of BoundChannel in org.jboss.xnio.channels
 interface ConnectedChannel<A>
          A channel that has a local and peer endpoint address.
 interface ConnectedStreamChannel<A>
          A stream channel that is a connection between a local and remote endpoint.
 interface DatagramChannel<A>
          A channel that sends and receives datagrams.
 interface LocalChannel
          A connected local IPC channel.
 interface MultipointDatagramChannel<A>
          A multipoint datagram channel.
 interface SslTcpChannel
          A TLS-encapsulated TCP channel.
 interface TcpChannel
          A TCP channel.
 interface UdpChannel
          A UDP channel.
 

Methods in org.jboss.xnio.channels that return types with arguments of type BoundChannel
 ChannelListener.Setter<? extends BoundChannel<A>> BoundChannel.getCloseSetter()
          Get the setter which can be used to change the close listener for this channel.
 


XNIO API 2.1.0.CR2

Copyright © 2010 JBoss, a division of Red Hat, Inc.