Examples of XmppIoHandlerAdapter


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
Copyright © 2018 www.massapi.com. 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.