本文整理汇总了Java中org.apache.tomcat.util.buf.CharChunk.setLimit方法的典型用法代码示例。如果您正苦于以下问题:Java CharChunk.setLimit方法的具体用法?Java CharChunk.setLimit怎么用?Java CharChunk.setLimit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.tomcat.util.buf.CharChunk
的用法示例。
在下文中一共展示了CharChunk.setLimit方法的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: InputBuffer
import org.apache.tomcat.util.buf.CharChunk; //导入方法依赖的package包/类
/**
* Alternate constructor which allows specifying the initial buffer size.
*
* @param size Buffer size to use
*/
public InputBuffer(int size) {
this.size = size;
bb = new ByteChunk(size);
bb.setLimit(size);
bb.setByteInputChannel(this);
cb = new CharChunk(size);
cb.setLimit(size);
cb.setOptimizedWrite(false);
cb.setCharInputChannel(this);
cb.setCharOutputChannel(this);
}
示例2: OutputBuffer
import org.apache.tomcat.util.buf.CharChunk; //导入方法依赖的package包/类
/**
* Alternate constructor which allows specifying the initial buffer size.
*
* @param size Buffer size to use
*/
public OutputBuffer(int size) {
bb = new ByteChunk(size);
bb.setLimit(size);
bb.setByteOutputChannel(this);
cb = new CharChunk(size);
cb.setLimit(size);
cb.setOptimizedWrite(false);
cb.setCharOutputChannel(this);
}
示例3: map
import org.apache.tomcat.util.buf.CharChunk; //导入方法依赖的package包/类
/**
* Map the specified URI relative to the context,
* mutating the given mapping data.
*
* @param uri URI
* @param mappingData This structure will contain the result of the mapping
* operation
*/
public void map(MessageBytes uri, MappingData mappingData)
throws Exception {
uri.toChars();
CharChunk uricc = uri.getCharChunk();
uricc.setLimit(-1);
internalMapWrapper(context, uricc, mappingData);
}
示例4: InputBuffer
import org.apache.tomcat.util.buf.CharChunk; //导入方法依赖的package包/类
/**
* Alternate constructor which allows specifying the initial buffer size.
*
* @param size Buffer size to use
*/
public InputBuffer(org.apache.catalina.connector.Request request, int size) {
this.request = request;
this.size = size;
bb = new ByteChunk(size);
bb.setLimit(size);
bb.setByteInputChannel(this);
cb = new CharChunk(size);
cb.setLimit(size);
cb.setOptimizedWrite(false);
cb.setCharInputChannel(this);
}
示例5: OutputBuffer
import org.apache.tomcat.util.buf.CharChunk; //导入方法依赖的package包/类
/**
* Alternate constructor which allows specifying the initial buffer size.
*
* @param size Buffer size to use
*/
public OutputBuffer(int size) {
bb = new ByteChunk(size);
bb.setLimit(size);
bb.setByteOutputChannel(this);
cb = new CharChunk(size);
cb.setLimit(size);
cb.setOptimizedWrite(false);
cb.setCharOutputChannel(this);
}
示例6: InputBuffer
import org.apache.tomcat.util.buf.CharChunk; //导入方法依赖的package包/类
/**
* Alternate constructor which allows specifying the initial buffer size.
*
* @param size
* Buffer size to use
*/
public InputBuffer(int size) {
this.size = size;
bb = new ByteChunk(size);
bb.setLimit(size);
bb.setByteInputChannel(this);
cb = new CharChunk(size);
cb.setLimit(size);
cb.setOptimizedWrite(false);
cb.setCharInputChannel(this);
cb.setCharOutputChannel(this);
}
示例7: OutputBuffer
import org.apache.tomcat.util.buf.CharChunk; //导入方法依赖的package包/类
/**
* Alternate constructor which allows specifying the initial buffer size.
*
* @param size
* Buffer size to use
*/
public OutputBuffer(int size) {
bb = new ByteChunk(size);
bb.setLimit(size);
bb.setByteOutputChannel(this);
cb = new CharChunk(size);
cb.setLimit(size);
cb.setOptimizedWrite(false);
cb.setCharOutputChannel(this);
}
示例8: InputBuffer
import org.apache.tomcat.util.buf.CharChunk; //导入方法依赖的package包/类
/**
* Alternate constructor which allows specifying the initial buffer size.
*
* @param size Buffer size to use
*/
public InputBuffer(int size) {
this.size = size;
bb = new ByteChunk(size);
bb.setLimit(size);
bb.setByteInputChannel(this);
cb = new CharChunk(size);
cb.setLimit(size);
cb.setOptimizedWrite(false);
cb.setCharInputChannel(this);
cb.setCharOutputChannel(this);
}
示例9: DispatchData
import org.apache.tomcat.util.buf.CharChunk; //导入方法依赖的package包/类
public DispatchData() {
uriMB = MessageBytes.newInstance();
CharChunk uriCC = uriMB.getCharChunk();
uriCC.setLimit(-1);
mappingData = new MappingData();
}
示例10: DispatchData
import org.apache.tomcat.util.buf.CharChunk; //导入方法依赖的package包/类
public DispatchData() {
uriMB = MessageBytes.newInstance();
CharChunk uriCC = uriMB.getCharChunk();
uriCC.setLimit(-1);
mappingData = new MappingData();
}
示例11: map
import org.apache.tomcat.util.buf.CharChunk; //导入方法依赖的package包/类
/**
* Map the specified URI relative to the context, mutating the given mapping
* data.
*
* @param uri
* URI
* @param mappingData
* This structure will contain the result of the mapping
* operation
*/
public void map(MessageBytes uri, MappingData mappingData) throws Exception {
uri.toChars();
CharChunk uricc = uri.getCharChunk();
uricc.setLimit(-1);
internalMapWrapper(context, uricc, mappingData);
}