mirror of https://github.com/apache/activemq.git
setter for max duration
git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@478598 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d81997d3eb
commit
be6fac15e2
|
@ -215,4 +215,20 @@ public class MessageIdList extends Assert implements MessageListener {
|
|||
this.parent = parent;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @return the maximumDuration
|
||||
*/
|
||||
public long getMaximumDuration(){
|
||||
return this.maximumDuration;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param maximumDuration the maximumDuration to set
|
||||
*/
|
||||
public void setMaximumDuration(long maximumDuration){
|
||||
this.maximumDuration=maximumDuration;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue