io.opentracing.contrib.redis.redisson.TracingRPriorityBlockingDeque 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 static io.opentracing.contrib.redis.common.TracingHelper.nullable;
import io.opentracing.Span;
import java.util.Comparator;
import java.util.stream.Stream;
import org.redisson.api.RPriorityBlockingDeque;
public class TracingRPriorityBlockingDeque extends TracingRBlockingDeque implements
RPriorityBlockingDeque {
private final RPriorityBlockingDeque deque;
private final TracingRedissonHelper tracingRedissonHelper;
public TracingRPriorityBlockingDeque(RPriorityBlockingDeque deque,
TracingRedissonHelper tracingRedissonHelper) {
super(deque, tracingRedissonHelper);
this.deque = deque;
this.tracingRedissonHelper = tracingRedissonHelper;
}
@Override
public Comparator super V> comparator() {
return deque.comparator();
}
@Override
public boolean trySetComparator(Comparator super V> comparator) {
Span span = tracingRedissonHelper.buildSpan("trySetComparator", deque);
span.setTag("comparator", nullable(comparator));
return tracingRedissonHelper.decorate(span, () -> deque.trySetComparator(comparator));
}
@Override
public Stream descendingStream() {
Span span = tracingRedissonHelper.buildSpan("descendingStream", deque);
return tracingRedissonHelper.decorate(span, deque::descendingStream);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy