io.opentracing.contrib.redis.redisson.TracingRLocalCachedMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opentracing-redis-redisson Show documentation
Show all versions of opentracing-redis-redisson Show documentation
OpenTracing Instrumentation for Redisson
/*
* Copyright 2017-2019 The OpenTracing Authors
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package io.opentracing.contrib.redis.redisson;
import io.opentracing.Span;
import java.util.Collection;
import java.util.Map;
import java.util.Set;
import org.redisson.api.RFuture;
import org.redisson.api.RLocalCachedMap;
public class TracingRLocalCachedMap extends TracingRMap implements
RLocalCachedMap {
private final RLocalCachedMap map;
private final TracingRedissonHelper tracingRedissonHelper;
public TracingRLocalCachedMap(RLocalCachedMap map,
TracingRedissonHelper tracingRedissonHelper) {
super(map, tracingRedissonHelper);
this.map = map;
this.tracingRedissonHelper = tracingRedissonHelper;
}
@Override
public void preloadCache() {
Span span = tracingRedissonHelper.buildSpan("preloadCache", map);
tracingRedissonHelper.decorate(span, map::preloadCache);
}
@Override
public RFuture clearLocalCacheAsync() {
Span span = tracingRedissonHelper.buildSpan("clearLocalCacheAsync", map);
return tracingRedissonHelper.prepareRFuture(span, map::clearLocalCacheAsync);
}
@Override
public void clearLocalCache() {
Span span = tracingRedissonHelper.buildSpan("clearLocalCache", map);
tracingRedissonHelper.decorate(span, map::clearLocalCache);
}
@Override
public Set cachedKeySet() {
Span span = tracingRedissonHelper.buildSpan("cachedKeySet", map);
return tracingRedissonHelper.decorate(span, map::cachedKeySet);
}
@Override
public Collection cachedValues() {
Span span = tracingRedissonHelper.buildSpan("cachedValues", map);
return tracingRedissonHelper.decorate(span, map::cachedValues);
}
@Override
public Set> cachedEntrySet() {
Span span = tracingRedissonHelper.buildSpan("cachedEntrySet", map);
return tracingRedissonHelper.decorate(span, map::cachedEntrySet);
}
@Override
public Map getCachedMap() {
Span span = tracingRedissonHelper.buildSpan("getCachedMap", map);
return tracingRedissonHelper.decorate(span, map::getCachedMap);
}
@Override
public void destroy() {
Span span = tracingRedissonHelper.buildSpan("destroy", map);
tracingRedissonHelper.decorate(span, map::destroy);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy