当前位置: 首页>>代码示例>>Java>>正文


Java Tuple.getBlob方法代码示例

本文整理汇总了Java中com.ibm.streams.operator.Tuple.getBlob方法的典型用法代码示例。如果您正苦于以下问题:Java Tuple.getBlob方法的具体用法?Java Tuple.getBlob怎么用?Java Tuple.getBlob使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.ibm.streams.operator.Tuple的用法示例。


在下文中一共展示了Tuple.getBlob方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: process

import com.ibm.streams.operator.Tuple; //导入方法依赖的package包/类
/**
 * Process an incoming tuple that arrived on the specified port.
 * 
 */
@Override
public final void process(StreamingInput<Tuple> inputStream, Tuple tuple) throws Exception {

	// Create a new tuple for output port 0
	StreamingOutput<OutputTuple> outStream = getOutput(0);
	OutputTuple outTuple = outStream.newTuple();
	outTuple.assign(tuple);

	// Get the incoming binary Avro message record(s)
	Blob avroMessage = tuple.getBlob(inputAvroMessage);
	if (LOGGER.isTraceEnabled())
		LOGGER.log(TraceLevel.TRACE, "Processing Avro message with length " + avroMessage.getLength());
	// Get the incoming binary Avro key (if specified)
	Blob avroKey = null;
	if (inputAvroKey != null) {
		avroKey = tuple.getBlob(inputAvroKey);
		if (LOGGER.isTraceEnabled())
			LOGGER.log(TraceLevel.TRACE, "Processing Avro key with length " + avroKey.getLength());
	}

	// Submit JSON tuples based on the Avro content received in the Blob
	try {
		if (!avroSchemaEmbedded) {
			processAvroMessage(avroMessage, avroKey, outStream, outTuple, messageSchema, keySchema);
		} else {
			processAvroMessage(avroMessage, outStream, outTuple);
		}
	} catch (Exception e) {
		e.printStackTrace();
	}
}
 
开发者ID:IBMStreams,项目名称:streamsx.avro,代码行数:36,代码来源:AvroToJSON.java

示例2: convertFrom

import com.ibm.streams.operator.Tuple; //导入方法依赖的package包/类
@Override
public Blob convertFrom(Tuple tuple) {
    return tuple.getBlob(0);
}
 
开发者ID:IBMStreams,项目名称:streamsx.topology,代码行数:5,代码来源:BlobMapping.java


注:本文中的com.ibm.streams.operator.Tuple.getBlob方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。