Skip to content
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