码迷,mamicode.com
首页 > 其他好文 > 详细

Void & void Void用在泛型

时间:2018-11-27 17:12:54      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:return   null   exec   cut   ext.get   value   exce   操作   get   

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用在泛型

标签:return   null   exec   cut   ext.get   value   exce   操作   get   

原文地址:https://www.cnblogs.com/junglecat/p/10026406.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!