io.opentelemetry.context.CurrentContextExecutorService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opentelemetry-context Show documentation
Show all versions of opentelemetry-context Show documentation
OpenTelemetry Context (Incubator)
/*
* 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 extends Callable> tasks)
throws InterruptedException {
return delegate().invokeAll(wrap(Context.current(), tasks));
}
@Override
public List> invokeAll(
Collection extends Callable> tasks, long timeout, TimeUnit unit)
throws InterruptedException {
return delegate().invokeAll(wrap(Context.current(), tasks), timeout, unit);
}
@Override
public T invokeAny(Collection extends Callable> tasks)
throws InterruptedException, ExecutionException {
return delegate().invokeAny(wrap(Context.current(), tasks));
}
@Override
public T invokeAny(Collection extends Callable> 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));
}
}