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

org.wildfly.clustering.context.ContextualThreadFactory Maven / Gradle / Ivy

There is a newer version: 4.0.0.Beta1
Show newest version
/*
 * Copyright The WildFly Authors
 * SPDX-License-Identifier: Apache-2.0
 */
package org.wildfly.clustering.context;

import java.util.concurrent.ThreadFactory;

/**
 * {@link ThreadFactory} decorator that contextualizes its threads.
 * @param  the context type
 * @author Paul Ferraro
 */
public class ContextualThreadFactory implements ThreadFactory {
	private final ThreadFactory factory;
	private final C targetContext;
	private final ThreadContextReference reference;
	private final Contextualizer contextualizer;

	public ContextualThreadFactory(ThreadFactory factory, C targetContext, ThreadContextReference reference) {
		this(factory, targetContext, reference, Contextualizer.withContextProvider(reference.provide(targetContext)));
	}

	ContextualThreadFactory(ThreadFactory factory, C targetContext, ThreadContextReference reference, Contextualizer contextualizer) {
		this.factory = factory;
		this.targetContext = targetContext;
		this.reference = reference;
		this.contextualizer = contextualizer;
	}

	@Override
	public Thread newThread(Runnable task) {
		Thread thread = this.factory.newThread(this.contextualizer.contextualize(task));
		this.reference.accept(thread, this.targetContext);
		return thread;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy