本文整理匯總了Java中backtype.storm.tuple.Values.add方法的典型用法代碼示例。如果您正苦於以下問題:Java Values.add方法的具體用法?Java Values.add怎麽用?Java Values.add使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類backtype.storm.tuple.Values
的用法示例。
在下文中一共展示了Values.add方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: nextTuple
import backtype.storm.tuple.Values; //導入方法依賴的package包/類
public void nextTuple() {
if (bufferQueue.isEmpty()) {
// pass in mysql server, db name, user, password
seedBufferQueue("localhost", "test", "root", "");
Utils.sleep(100);
} else {
// Replace name with the data being extracted.
// This example expects only name to be returned in the sql/and thus is only item output by the spout.
// To add additional data add them to the values using new Values(value1, value2, etc) then emit the values
String name = bufferQueue.poll();
if (name != null) {
Values values = new Values();
values.add(name);
_collector.emit(values);
}
Utils.sleep(50);
}
}