Java tutorial
/* * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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 org.apache.qpid.server.configuration.updater; import java.util.concurrent.CancellationException; import java.util.concurrent.atomic.AtomicReference; import com.google.common.util.concurrent.Futures; import com.google.common.util.concurrent.ListenableFuture; public class CurrentThreadTaskExecutor implements TaskExecutor { private final AtomicReference<Thread> _thread = new AtomicReference<>(); private boolean _running; @Override public boolean isRunning() { return _running; } @Override public void start() { if (!_thread.compareAndSet(null, Thread.currentThread())) { checkThread(); } _running = true; } @Override public void stopImmediately() { checkThread(); _running = false; } private void checkThread() { if (_thread.get() != Thread.currentThread()) { throw new IllegalArgumentException("Can only access the thread executor from a single thread"); } } @Override public void stop() { stopImmediately(); } @Override public <T, E extends Exception> T run(final Task<T, E> task) throws CancellationException, E { checkThread(); return task.execute(); } @Override public <T, E extends Exception> ListenableFuture<T> submit(Task<T, E> task) throws CancellationException, E { checkThread(); final T result = task.execute(); return Futures.immediateFuture(result); } public static TaskExecutor newStartedInstance() { TaskExecutor executor = new CurrentThreadTaskExecutor(); executor.start(); return executor; } @Override public Factory getFactory() { return new Factory() { @Override public TaskExecutor newInstance() { return CurrentThreadTaskExecutor.this; } @Override public TaskExecutor newInstance(final String name, PrincipalAccessor principalAccessor) { return CurrentThreadTaskExecutor.this; } }; } @Override public void execute(Runnable command) { command.run(); } }