All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.caucho.jms.queue.QueueEntry Maven / Gradle / Ivy

package com.caucho.jms.queue;

import com.caucho.util.Alarm;
import com.caucho.util.CurrentTime;

import java.io.Serializable;

/**
 * Basic implementation of an entry in the Queue.
 */
public abstract class QueueEntry
{  
  private final int _priority;

  private final long _leaseExpire;

  private final String _msgId;

  QueueEntry _next;
  
  QueueEntry _nextPriority;

  private long _expiresTime;

  private M _payload;
  
  // True if the message has been read, but not yet committed
  private long _readSequence;

  public QueueEntry(String msgId,
                    long leaseTimeout,
                    int priority,
                    long expiresTime)
  {
    if (msgId == null)
      throw new NullPointerException();
    
    _msgId = msgId;
    _leaseExpire = leaseTimeout + CurrentTime.getCurrentTime();
    _expiresTime = expiresTime;
    _priority = priority;
  }

  public String getMsgId()
  {
    return _msgId;
  }
  
  public long getLeaseExpires()
  {
    return _leaseExpire;
  }
  
  public long getExpiresTime()
  {
    return _expiresTime;
  }
  
  /**
   * Returns true if we can get a lease to this entry
   */
  public boolean isLease()
  {
    return _leaseExpire < CurrentTime.getCurrentTime();
  }

  public boolean isRead()
  {
    return _readSequence != 0;
  }
  
  public boolean isExpired()
  {
    return _expiresTime < CurrentTime.getCurrentTime();
  }
  
  
  public long getReadSequence()
  {
    return _readSequence;
  }

  public void setReadSequence(long readSequence)
  {
    _readSequence = readSequence;
  }  

  public void rollback()
  {
    
  }
  
  public int getPriority()
  {
    return _priority;
  }

  public M readPayload()
  {
    return getPayload();
  }
  
  public final M getPayload()
  {
    return _payload;
  }
  
  public final void setPayload(M payload)
  {
    _payload = payload;
  }

  @Override
  public String toString()
  {
    return (getClass().getSimpleName()
            + "[" + _msgId + ",pri=" + _priority + "]");
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy