io.opentracing.contrib.redis.redisson.TracingRReadWriteLock 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 org.redisson.api.RLock;
import org.redisson.api.RReadWriteLock;
public class TracingRReadWriteLock implements RReadWriteLock {
private final RReadWriteLock lock;
private final TracingRedissonHelper tracingRedissonHelper;
public TracingRReadWriteLock(RReadWriteLock lock, TracingRedissonHelper tracingRedissonHelper) {
this.lock = lock;
this.tracingRedissonHelper = tracingRedissonHelper;
}
@Override
public RLock readLock() {
return new TracingRLock(lock.readLock(), tracingRedissonHelper);
}
@Override
public RLock writeLock() {
return new TracingRLock(lock.writeLock(), tracingRedissonHelper);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy