You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/lateral/socket/tcp/TCPLateralCacheAttributes.java
+19-19Lines changed: 19 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -122,7 +122,7 @@ public int getSocketTimeOut()
122
122
123
123
/**
124
124
* Gets the tcpListenerHost attribute of the ILateralCacheAttributes object
125
-
* <p>
125
+
*
126
126
* @return The tcpListenerHost value
127
127
*/
128
128
@Override
@@ -133,7 +133,7 @@ public String getTcpListenerHost()
133
133
134
134
/**
135
135
* Gets the tcpListenerPort attribute of the ILateralCacheAttributes object
136
-
* <p>
136
+
*
137
137
* @return The tcpListenerPort value
138
138
*/
139
139
@Override
@@ -144,7 +144,7 @@ public int getTcpListenerPort()
144
144
145
145
/**
146
146
* Gets the tcpServer attribute of the ILateralCacheAttributes object
147
-
* <p>
147
+
*
148
148
* @return The tcpServer value
149
149
*/
150
150
@Override
@@ -155,7 +155,7 @@ public String getTcpServer()
155
155
156
156
/**
157
157
* Gets the tcpServers attribute of the ILateralCacheAttributes object
158
-
* <p>
158
+
*
159
159
* @return The tcpServers value
160
160
*/
161
161
@Override
@@ -166,7 +166,7 @@ public String getTcpServers()
166
166
167
167
/**
168
168
* The address to broadcast to if UDPDiscovery is enabled.
169
-
* <p>
169
+
*
170
170
* @return the udpDiscoveryAddr.
171
171
*/
172
172
@Override
@@ -177,7 +177,7 @@ public String getUdpDiscoveryAddr()
177
177
178
178
/**
179
179
* The port to use if UDPDiscovery is enabled.
180
-
* <p>
180
+
*
181
181
* @return the udpDiscoveryPort.
182
182
*/
183
183
@Override
@@ -188,7 +188,7 @@ public int getUdpDiscoveryPort()
188
188
189
189
/**
190
190
* The time-to-live for the UDP multicast packets
191
-
* <p>
191
+
*
192
192
* @return the udpTTL.
193
193
* @since 3.1
194
194
*/
@@ -200,7 +200,7 @@ public int getUdpTTL()
200
200
201
201
/**
202
202
* Is the lateral allowed to try and get from other laterals.
203
-
* <p>
203
+
*
204
204
* @return true if the lateral will try to get
205
205
*/
206
206
@Override
@@ -211,7 +211,7 @@ public boolean isAllowGet()
211
211
212
212
/**
213
213
* Is the lateral allowed to put objects to other laterals.
214
-
* <p>
214
+
*
215
215
* @return true if puts are allowed
216
216
*/
217
217
@Override
@@ -226,7 +226,7 @@ public boolean isAllowPut()
226
226
* then it will compare the hash code. if they are the same, it will not remove. This isn't
227
227
* perfect since different objects can have the same hash code, but it is unlikely of objects of
228
228
* the same type.
229
-
* <p>
229
+
*
230
230
* @return boolean
231
231
*/
232
232
@Override
@@ -239,7 +239,7 @@ public boolean isFilterRemoveByHashCode()
239
239
* Should the client send a remove command rather than a put when update is called. This is a
240
240
* client option, not a receiver option. This allows you to prevent the lateral from serializing
241
241
* objects.
242
-
* <p>
242
+
*
243
243
* @return true if updates will result in a remove command being sent.
244
244
*/
245
245
@Override
@@ -249,8 +249,8 @@ public boolean isIssueRemoveOnPut()
249
249
}
250
250
251
251
/**
252
-
* Whether or not TCP laterals can try to find each other by multicast communication.
253
-
* <p>
252
+
* Tests whether or not TCP laterals can try to find each other by multicast communication.
253
+
*
254
254
* @return the udpDiscoveryEnabled.
255
255
*/
256
256
@Override
@@ -274,7 +274,7 @@ public void setAllowGet( final boolean allowGet )
274
274
275
275
/**
276
276
* Is the lateral allowed to put objects to other laterals.
277
-
* <p>
277
+
*
278
278
* @param allowPut
279
279
*/
280
280
@Override
@@ -289,7 +289,7 @@ public void setAllowPut( final boolean allowPut )
289
289
* then it will compare the hash code. if they are the same, it will not remove. This isn't
290
290
* perfect since different objects can have the same hash code, but it is unlikely of objects of
291
291
* the same type.
292
-
* <p>
292
+
*
293
293
* @param filter
294
294
*/
295
295
@Override
@@ -302,7 +302,7 @@ public void setFilterRemoveByHashCode( final boolean filter )
302
302
* Should the client send a remove command rather than a put when update is called. This is a
303
303
* client option, not a receiver option. This allows you to prevent the lateral from serializing
304
304
* objects.
305
-
* <p>
305
+
*
306
306
* @param issueRemoveOnPut
307
307
*/
308
308
@Override
@@ -331,7 +331,7 @@ public void setSocketTimeOut( final int socketTimeOut )
331
331
332
332
/**
333
333
* Sets the tcpListenerHost attribute of the ILateralCacheAttributes object
334
-
* <p>
334
+
*
335
335
* @param val
336
336
* The new tcpListenerHost value
337
337
*/
@@ -343,7 +343,7 @@ public void setTcpListenerHost( final String val )
343
343
344
344
/**
345
345
* Sets the tcpListenerPort attribute of the ILateralCacheAttributes object
346
-
* <p>
346
+
*
347
347
* @param val The new tcpListenerPort value
348
348
*/
349
349
@Override
@@ -354,7 +354,7 @@ public void setTcpListenerPort( final int val )
354
354
355
355
/**
356
356
* Sets the tcpServer attribute of the ILateralCacheAttributes object
Copy file name to clipboardExpand all lines: commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/lateral/socket/tcp/behavior/ITCPLateralCacheAttributes.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -125,7 +125,7 @@ public interface ITCPLateralCacheAttributes
125
125
booleanisIssueRemoveOnPut();
126
126
127
127
/**
128
-
* Whether or not TCP laterals can try to find each other by multicast
128
+
* Tests whether or not TCP laterals can try to find each other by multicast
0 commit comments