Package uk.org.microbase.notification.db.data.Message

Examples of uk.org.microbase.notification.db.data.Message.State


       * TODO do we need to lock the message? Probably not, if anything just
       * need to lock message/responder combo?
       * And probably don't even need to do that because the queue is already
       * locked (see run() method).
       */
      State state = msg.getResponderStates().get(responderId);

      if (state == null)
      {
        updateMessageState(msg, Message.State.NEW);
        state = Message.State.NEW;
View Full Code Here

TOP

Related Classes of uk.org.microbase.notification.db.data.Message.State

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.