Example #1
0
 /**
  * Get the time that this message was read
  *
  * @return UNIX timestamp
  */
 public long getReadTimeStamp() {
   return _record.getLongField(Attributes.READ_TIMESTAMP.toString(), 0L);
 }
Example #2
0
 /**
  * Set the time that this message was read
  *
  * @param time UNIX timestamp
  */
 public void setReadTimeStamp(long time) {
   _record.setLongField(Attributes.READ_TIMESTAMP.toString(), time);
 }