Void & void Void用在泛型
Posted junglecat
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Void & void Void用在泛型相关的知识,希望对你有一定的参考价值。
public Void setStr(String key,String value)throws Exception{
RetryTemplate retryTemplate=initRetryTemplate();
retryTemplate.execute(new RetryCallback<Void,Exception>() {
int i = 0;
// 重试操作
@Override
public Void doWithRetry(RetryContext retryContext) throws Exception {
log.info("retry count: {}", retryContext.getRetryCount());
stringRedisTemplate.opsForValue().set(key,value);
// return len(i++);
return null;
}
});
return null;
}
以上是关于Void & void Void用在泛型的主要内容,如果未能解决你的问题,请参考以下文章