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

fi.jumi.core.output.InitializedInheritableThreadLocal Maven / Gradle / Ivy

There is a newer version: 0.5.437
Show newest version
// Copyright © 2011-2012, Esko Luontola 
// This software is released under the Apache License 2.0.
// The license text is at http://www.apache.org/licenses/LICENSE-2.0

package fi.jumi.core.output;

import javax.annotation.concurrent.ThreadSafe;

@ThreadSafe
class InitializedInheritableThreadLocal extends InheritableThreadLocal {

    private final T initialValue;

    public InitializedInheritableThreadLocal(T initialValue) {
        this.initialValue = initialValue;
    }

    @Override
    protected T initialValue() {
        return initialValue;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy