Package de.fu_berlin.inf.dpp.exceptions

Examples of de.fu_berlin.inf.dpp.exceptions.ReceiverGoneException


            } catch (SarosCancellationException cancellation) {
                log.error("Receiver cancelled unexpected: ", cancellation);
                if (this.getSession() != null)
                    this.getSession().reportErrorAndDispose(
                        new ReceiverGoneException(cancellation));
            } catch (IOException ioe) {
                log.error("Connection broken: ", ioe);
                if (this.getSession() != null)
                    this.getSession().reportErrorAndDispose(
                        new ConnectionException(ioe));
View Full Code Here


            List<StreamSession> currentSessions = new ArrayList<StreamSession>();
            currentSessions.addAll(sessions.values());

            for (StreamSession session : currentSessions) {
                if (session.remoteJID.equals(user.getJID())) {
                    session.reportErrorAndDispose(new ReceiverGoneException());
                }
            }
        }
View Full Code Here

TOP

Related Classes of de.fu_berlin.inf.dpp.exceptions.ReceiverGoneException

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.