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

io.opentelemetry.context.CurrentContextExecutorService Maven / Gradle / Ivy

There is a newer version: 1.44.1
Show newest version
/*
 * Copyright The OpenTelemetry Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package io.opentelemetry.context;

import java.util.Collection;
import java.util.List;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Future;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;

final class CurrentContextExecutorService extends ForwardingExecutorService {

  CurrentContextExecutorService(ExecutorService delegate) {
    super(delegate);
  }

  @Override
  public  Future submit(Callable task) {
    return delegate().submit(Context.current().wrap(task));
  }

  @Override
  public  Future submit(Runnable task, T result) {
    return delegate().submit(Context.current().wrap(task), result);
  }

  @Override
  public Future submit(Runnable task) {
    return delegate().submit(Context.current().wrap(task));
  }

  @Override
  public  List> invokeAll(Collection> tasks)
      throws InterruptedException {
    return delegate().invokeAll(wrap(Context.current(), tasks));
  }

  @Override
  public  List> invokeAll(
      Collection> tasks, long timeout, TimeUnit unit)
      throws InterruptedException {
    return delegate().invokeAll(wrap(Context.current(), tasks), timeout, unit);
  }

  @Override
  public  T invokeAny(Collection> tasks)
      throws InterruptedException, ExecutionException {
    return delegate().invokeAny(wrap(Context.current(), tasks));
  }

  @Override
  public  T invokeAny(Collection> tasks, long timeout, TimeUnit unit)
      throws InterruptedException, ExecutionException, TimeoutException {
    return delegate().invokeAny(wrap(Context.current(), tasks), timeout, unit);
  }

  @Override
  public void execute(Runnable command) {
    delegate().execute(Context.current().wrap(command));
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy