|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.apache.mina.common.BaseSessionManager
org.apache.mina.io.datagram.DatagramAcceptor
public class DatagramAcceptor
IoAcceptor for datagram transport (UDP/IP).
| Field Summary |
|---|
| Fields inherited from class org.apache.mina.common.BaseSessionManager |
|---|
exceptionMonitor |
| Constructor Summary | |
|---|---|
DatagramAcceptor()
Creates a new instance. |
|
| Method Summary | |
|---|---|
void |
bind(java.net.SocketAddress address,
IoHandler handler)
Binds to the specified address and handles incoming
connections with the specified handler. |
IoFilterChain |
getFilterChain()
Returns the filter chain that filters all events which is related with sessions this manager manages. |
IoSession |
newSession(java.net.SocketAddress remoteAddress,
java.net.SocketAddress localAddress)
(Optional) Returns an IoSession that is bound to the specified
localAddress and remoteAddress which reuses
the localAddress that is already bound by IoAcceptor
via IoAcceptor.bind(SocketAddress, IoHandler). |
void |
unbind(java.net.SocketAddress address)
Unbinds from the specified address. |
| Methods inherited from class org.apache.mina.common.BaseSessionManager |
|---|
getExceptionMonitor, setExceptionMonitor |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface org.apache.mina.common.SessionManager |
|---|
getExceptionMonitor, setExceptionMonitor |
| Constructor Detail |
|---|
public DatagramAcceptor()
| Method Detail |
|---|
public void bind(java.net.SocketAddress address,
IoHandler handler)
throws java.io.IOException
IoAcceptoraddress and handles incoming
connections with the specified handler.
bind in interface IoAcceptorjava.io.IOException - if failed to bindpublic void unbind(java.net.SocketAddress address)
IoAcceptoraddress.
unbind in interface IoAcceptor
public IoSession newSession(java.net.SocketAddress remoteAddress,
java.net.SocketAddress localAddress)
IoAcceptorIoSession that is bound to the specified
localAddress and remoteAddress which reuses
the localAddress that is already bound by IoAcceptor
via IoAcceptor.bind(SocketAddress, IoHandler).
This operation is optional. Please throw UnsupportedOperationException
if the transport type doesn't support this operation. This operation is
usually implemented for connectionless transport types.
newSession in interface IoAcceptorpublic IoFilterChain getFilterChain()
IoSessionManager
getFilterChain in interface IoSessionManager
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||