/**
* Creates a new predictor with the specified parameters.
*
* @param minimum the inclusive lower bound of the expected buffer size
* @param initial the initial buffer size when no feed back was received
* @param maximum the inclusive upper bound of the expected buffer size
*/
public WrappedAdaptiveReceiveBufferSizePredictor(int minimum,
int initial,
int maximum) {
adaptiveReceiveBufferSizePredictor =
new AdaptiveReceiveBufferSizePredictor(minimum, initial, maximum);
}
WrappedAdaptiveReceiveBufferSizePredictorFactory.java 文件源码
java
阅读 27
收藏 0
点赞 0
评论 0
项目:giraph-research
作者:
评论列表
文章目录