码迷,mamicode.com
首页 > 其他好文 > 详细

TridentState分析

时间:2014-09-29 13:49:30      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:blog   ar   java   sp   div   c   log   r   new   

public class TridentState {
    TridentTopology _topology;
    Node _node;
    
    protected TridentState(TridentTopology topology, Node node) {
        _topology = topology;
        _node = node;
    }
    
    public Stream newValuesStream() {
        return new Stream(_topology, _node.name, _node);
    }
    
    public TridentState parallelismHint(int parallelism) {
        _node.parallelismHint = parallelism;
        return this;
    }
}

 主要作用就是构建 TridentTopology 和node相关联的Stream

TridentState分析

标签:blog   ar   java   sp   div   c   log   r   new   

原文地址:http://www.cnblogs.com/chengxin1982/p/3999754.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!