Package fr.dyade.aaa.common

Examples of fr.dyade.aaa.common.EmptyQueueException


  public synchronized Message pop() throws EmptyQueueException {
    if (Debug.debug && logmon.isLoggable(BasicLevel.DEBUG))
      logmon.log(BasicLevel.DEBUG, logmsg + "pop()");

    if (validated == 0)
      throw new EmptyQueueException();
   
    Message item = getMessageAt(0);
    removeMessageAt(0);
    validated -= 1;
View Full Code Here

TOP

Related Classes of fr.dyade.aaa.common.EmptyQueueException

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.