Examples of LeaveReason


Examples of com.skype.ChatMessage.LeaveReason

        for (User user : addedUsers) {
          fireChatUserAdded(chat, user);
        }
        break;
      case LEFT:
        LeaveReason leaveReason = chatMessage.getLeaveReason();
        if (leaveReason.equals(LeaveReason.UNSUBSCRIBE)) {
          User user = chatMessage.getSender();
          fireChatUserLeft(chat, user);
        }
        break;
      default:
View Full Code Here

Examples of com.sleepycat.je.rep.monitor.LeaveGroupEvent.LeaveReason

        return getThreadWaitInterval();
    }

    /* Get the shut down reason for this node. */
    private LeaveReason getLeaveReason() {
        LeaveReason reason = null;

        Exception exception = getSavedShutdownException();
        if (exception == null) {
            reason = LeaveReason.NORMAL_SHUTDOWN;
        } else if (exception instanceof GroupShutdownException) {
View Full Code Here

Examples of com.sleepycat.je.rep.monitor.LeaveGroupEvent.LeaveReason

        return getThreadWaitInterval();
    }

    /* Get the shut down reason for this node. */
    private LeaveReason getLeaveReason() {
        LeaveReason reason = null;

        Exception exception = getSavedShutdownException();
        if (exception == null) {
            reason = LeaveReason.NORMAL_SHUTDOWN;
        } else if (exception instanceof GroupShutdownException) {
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.