Package org.apache.vysper.mina

Examples of org.apache.vysper.mina.XmppIoHandlerAdapter


    }

    public void dispose(IoSession ioSession) throws Exception {
        final IoHandler handler = ioSession.getHandler();
        if (handler instanceof XmppIoHandlerAdapter) {
            XmppIoHandlerAdapter xmppIoHandlerAdapter = (XmppIoHandlerAdapter)handler;
            xmppIoHandlerAdapter.sessionClosed(ioSession);
            logger.debug("terminated and disposed session id = " + ioSession.getId());
        } else {
            logger.warn("unhandled StanzaWriterProtocolEncoder.dispose()");
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.vysper.mina.XmppIoHandlerAdapter

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.