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

com.ociweb.pronghorn.network.http.HeaderWriterLocal Maven / Gradle / Ivy

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