Revision 95371079
Added by Katja Luther about 4 years ago
cdmlib-services/src/main/java/eu/etaxonomy/cdm/api/service/NameServiceImpl.java | ||
---|---|---|
835 | 835 |
|
836 | 836 |
@Override |
837 | 837 |
@Transactional(readOnly = false) |
838 |
public void updateCaches(Class<? extends TaxonName> clazz, Integer stepSize, IIdentifiableEntityCacheStrategy<TaxonName> cacheStrategy, IProgressMonitor monitor) {
|
|
838 |
public UpdateResult updateCaches(Class<? extends TaxonName> clazz, Integer stepSize, IIdentifiableEntityCacheStrategy<TaxonName> cacheStrategy, IProgressMonitor monitor) {
|
|
839 | 839 |
if (clazz == null){ |
840 | 840 |
clazz = TaxonName.class; |
841 | 841 |
} |
842 |
super.updateCachesImpl(clazz, stepSize, cacheStrategy, monitor); |
|
842 |
return super.updateCachesImpl(clazz, stepSize, cacheStrategy, monitor);
|
|
843 | 843 |
} |
844 | 844 |
|
845 | 845 |
|
Also available in: Unified diff
ref #8096: move cache updater and service methods return updateResult -continue