This would be a nice place for the good old visitor pattern, so
something like, in SocketSession,
SocketSession implements VisitableSession
...
public void accept(final SessionVisitor visitor)
{
visitor.visitSocketSession(this);
}
Then you have a lot of flexibility with the visitor itself to handle
types nicely. The SessionVisitor would be an interface like:
public interface SessionVisitor
{
void visitSocketSocket(final SocketSession session);
void visitDatagramSession(final DatagramSession session);
}
I'd be happy to make a patch along those lines if people were
interested. It would use generics for return types rather than the
above for slightly more flexibility.
-Adam
On Feb 13, 2008 12:06 AM, 이희승 (Trustin Lee) <[EMAIL PROTECTED]> wrote:
> 2008-01-28 (월), 10:47 -0400, Brenno Hayden 쓰시길:
> > Hello ,
> > i have same doubt..
> > - How can I tell if the connection is udp or tcp?
>
> In 1.x, you can use IoSession.getTransportType(). In 2.x, you can
> simply use 'instanceof SocketSession' or 'instanceof DatagramSession'.
>
> --
> what we call human nature is actually human habit
> --
> http://gleamynode.net/
>
--
http://www.littleshoot.org
Open Source, Open Standards, Open Data