All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.opentracing.contrib.redis.redisson.TracingRListMultimap Maven / Gradle / Ivy

There is a newer version: 0.1.16
Show newest version
/*
 * 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.List;
import org.redisson.api.RList;
import org.redisson.api.RListMultimap;

public class TracingRListMultimap extends TracingRMultimap implements
    RListMultimap {
  private final RListMultimap map;
  private final TracingRedissonHelper tracingRedissonHelper;

  public TracingRListMultimap(RListMultimap map,
      TracingRedissonHelper tracingRedissonHelper) {
    super(map, tracingRedissonHelper);
    this.map = map;
    this.tracingRedissonHelper = tracingRedissonHelper;
  }

  @Override
  public RList get(K key) {
    Span span = tracingRedissonHelper.buildSpan("get", map);
    span.setTag("key", nullable(key));
    return tracingRedissonHelper
        .decorate(span, () -> new TracingRList<>(map.get(key), tracingRedissonHelper));
  }

  @Override
  public List getAll(K key) {
    Span span = tracingRedissonHelper.buildSpan("getAll", map);
    span.setTag("key", nullable(key));
    return tracingRedissonHelper.decorate(span, () -> map.getAll(key));
  }

  @Override
  public List removeAll(Object key) {
    Span span = tracingRedissonHelper.buildSpan("removeAll", map);
    span.setTag("key", nullable(key));
    return tracingRedissonHelper.decorate(span, () -> map.removeAll(key));
  }

  @Override
  public List replaceValues(K key, Iterable values) {
    Span span = tracingRedissonHelper.buildSpan("replaceValues", map);
    span.setTag("key", nullable(key));
    span.setTag("values", nullable(values));
    return tracingRedissonHelper.decorate(span, () -> map.replaceValues(key, values));
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy