Fix javadoc warnings
This commit is contained in:
@@ -82,7 +82,7 @@ abstract public class FutureResult<T> {
|
||||
* Indicates if this result is the status of an operation. Typically status results will be
|
||||
* discarded on conversion.
|
||||
*
|
||||
* @status true if this is a status result (i.e. OK)
|
||||
* @return true if this is a status result (i.e. OK)
|
||||
*/
|
||||
public void setStatus(boolean status) {
|
||||
this.status = status;
|
||||
|
||||
@@ -2183,7 +2183,7 @@ public class SrpConnection implements RedisConnection {
|
||||
* type. If false, results of {@link #closePipeline()} and {@link #exec()} will be of the
|
||||
* type returned by the Lettuce driver
|
||||
*
|
||||
* @param convertPipelineResults Whether or not to convert pipeline results
|
||||
* @param convertPipelineAndTxResults Whether or not to convert pipeline results
|
||||
*/
|
||||
public void setConvertPipelineAndTxResults(boolean convertPipelineAndTxResults) {
|
||||
this.convertPipelineAndTxResults = convertPipelineAndTxResults;
|
||||
|
||||
@@ -133,7 +133,7 @@ public class SrpConnectionFactory implements InitializingBean, DisposableBean, R
|
||||
* type. If false, results of {@link SrpConnection#closePipeline()} and {@link SrpConnection#exec()}
|
||||
* will be of the type returned by the SRP driver
|
||||
*
|
||||
* @param convertPipelineResults Whether or not to convert pipeline and tx results
|
||||
* @param convertPipelineAndTxResults Whether or not to convert pipeline and tx results
|
||||
*/
|
||||
public void setConvertPipelineAndTxResults(boolean convertPipelineAndTxResults) {
|
||||
this.convertPipelineAndTxResults = convertPipelineAndTxResults;
|
||||
|
||||
@@ -511,7 +511,7 @@ public class RedisTemplate<K, V> extends RedisAccessor implements RedisOperation
|
||||
* any results that are byte[]s or Collections or Maps of byte[]s or Tuples. Other result
|
||||
* types (Long, Boolean, etc) are left as-is in the converted results.
|
||||
*
|
||||
* If conversion of tx results has been disabled in the {@link ConnectionFactory},
|
||||
* If conversion of tx results has been disabled in the {@link RedisConnectionFactory},
|
||||
* the results of exec will be returned without deserialization. This check is mostly for
|
||||
* backwards compatibility with 1.0.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user