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

org.eclipse.jetty.io.BuffersFactory Maven / Gradle / Ivy

There is a newer version: 11.0.0.beta1
Show newest version
package org.eclipse.jetty.io;

public class BuffersFactory
{
    public static Buffers newBuffers(Buffers.Type headerType, int headerSize, Buffers.Type bufferType, int bufferSize, Buffers.Type otherType,int maxSize)
    {
        if (maxSize>=0)
            return new PooledBuffers(headerType,headerSize,bufferType,bufferSize,otherType,maxSize);
        return new ThreadLocalBuffers(headerType,headerSize,bufferType,bufferSize,otherType);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy