Skip to content

Add 'milliseconds' unit to Javadoc for 'soTimeout' parameters in vari… #9293

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
public interface CommonSocketOptions {

/**
* @param soTimeout The timeout.
* @param soTimeout The timeout, in milliseconds.
* @see java.net.Socket#setSoTimeout(int)
* @see java.net.DatagramSocket#setSoTimeout(int)
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ public void setLocalAddress(String localAddress) {
}

/**
* @param soTimeout The timeout.
* @param soTimeout The timeout, in milliseconds.
* @see AbstractConnectionFactory#setSoTimeout(int)
*/
public void setSoTimeout(int soTimeout) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public S id(String id) {
}

/**
* @param soTimeout the timeout socket option.
* @param soTimeout the timeout socket option, in milliseconds.
* @return the spec.
* @see AbstractConnectionFactory#setSoTimeout(int)
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ protected UdpInboundChannelAdapterSpec(int port, String multicastGroup) {
}

/**
* @param soTimeout set the timeout socket option.
* @param soTimeout set the timeout socket option, in milliseconds.
* @return the spec.
* @see UnicastReceivingChannelAdapter#setSoTimeout(int)
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ public int getSoTimeout() {
}

/**
* @param soTimeout the soTimeout to set
* @param soTimeout the soTimeout to set, in milliseconds
*/
public void setSoTimeout(int soTimeout) {
this.soTimeout = soTimeout;
Expand Down