本文整理匯總了Java中org.apache.flink.api.java.tuple.Tuple2.setFields方法的典型用法代碼示例。如果您正苦於以下問題:Java Tuple2.setFields方法的具體用法?Java Tuple2.setFields怎麽用?Java Tuple2.setFields使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.apache.flink.api.java.tuple.Tuple2
的用法示例。
在下文中一共展示了Tuple2.setFields方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: next
import org.apache.flink.api.java.tuple.Tuple2; //導入方法依賴的package包/類
public Tuple2<Integer, String> next(Tuple2<Integer, String> reuse) {
this.key = nextKey();
if (this.valueMode != ValueMode.CONSTANT) {
this.value = randomString();
}
reuse.setFields(this.key, this.value);
return reuse;
}
示例2: add
import org.apache.flink.api.java.tuple.Tuple2; //導入方法依賴的package包/類
/**
* Adds the given value to the given accumulator.
*
* @param event The value to add
* @param accumulator The accumulator (numEvents,avgSpeed).
*/
@Override
public void add(SpeedSensorEvent event, Tuple2<Long,Double> accumulator) {
long numEvents = ++accumulator.f0;
//LOG.debug("IN ({}): {}", numEvents, event);
final double newAverageSpeed = ((accumulator.f1 * (numEvents - 1)) + event.getV()) / numEvents;
accumulator.setFields(numEvents, newAverageSpeed);
//LOG.debug("ACC: {}", accumulator);
}