![JAR search and dependency download from the Maven repository](/logo.png)
com.ociweb.pronghorn.network.http.HeaderWriterLocal Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Pronghorn Show documentation
Show all versions of Pronghorn Show documentation
Primary dependency for any project using the Pronghorn framework
The newest version!
package com.ociweb.pronghorn.network.http;
public class HeaderWriterLocal {
private static final ThreadLocal tpr =
new ThreadLocal() {
@Override protected HeaderWriter initialValue() {
return new HeaderWriter();
}
};
public static HeaderWriter get() {
return tpr.get();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy