mirror of https://github.com/apache/activemq.git
added time unit for "send timeout" in the javadocs
This commit is contained in:
parent
d0f1dd6668
commit
b21dc69e81
|
@ -1777,14 +1777,14 @@ public class ActiveMQConnection implements Connection, TopicConnection, QueueCon
|
|||
}
|
||||
|
||||
/**
|
||||
* @return the sendTimeout
|
||||
* @return the sendTimeout (in milliseconds)
|
||||
*/
|
||||
public int getSendTimeout() {
|
||||
return sendTimeout;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param sendTimeout the sendTimeout to set
|
||||
* @param sendTimeout the sendTimeout to set (in milliseconds)
|
||||
*/
|
||||
public void setSendTimeout(int sendTimeout) {
|
||||
this.sendTimeout = sendTimeout;
|
||||
|
|
|
@ -616,14 +616,14 @@ public class ActiveMQConnectionFactory extends JNDIBaseStorable implements Conne
|
|||
}
|
||||
|
||||
/**
|
||||
* @return the sendTimeout
|
||||
* @return the sendTimeout (in milliseconds)
|
||||
*/
|
||||
public int getSendTimeout() {
|
||||
return sendTimeout;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param sendTimeout the sendTimeout to set
|
||||
* @param sendTimeout the sendTimeout to set (in milliseconds)
|
||||
*/
|
||||
public void setSendTimeout(int sendTimeout) {
|
||||
this.sendTimeout = sendTimeout;
|
||||
|
|
Loading…
Reference in New Issue