本文整理汇总了Java中com.datatorrent.api.DefaultInputPort类的典型用法代码示例。如果您正苦于以下问题:Java DefaultInputPort类的具体用法?Java DefaultInputPort怎么用?Java DefaultInputPort使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
DefaultInputPort类属于com.datatorrent.api包,在下文中一共展示了DefaultInputPort类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: attachOutputPortToInputPort
import com.datatorrent.api.DefaultInputPort; //导入依赖的package包/类
/**
* This is a utility method which is used to attach the output port of an {@link EmbeddableQueryInfoProvider} to the input port
* of the encapsulating {@link AppData.Store}.
* @param <T> The type of data emitted by the {@link EmbeddableQueryInfoProvider}'s output port and received by the
* {@link AppData.Store}'s input port.
* @param outputPort The output port of the {@link EmbeddableQueryInfoProvider} which is being used by an {@link AppData.Store}.
* @param inputPort The input port of the {@link AppData.Store} which is using an {@link EmbeddableQueryInfoProvider}.
*/
public static <T> void attachOutputPortToInputPort(DefaultOutputPort<T> outputPort, final DefaultInputPort<T> inputPort)
{
outputPort.setSink(new Sink<Object>()
{
@Override
@SuppressWarnings("unchecked")
public void put(Object tuple)
{
LOG.debug("processing tuple");
inputPort.process((T)tuple);
}
@Override
public int getCount(boolean reset)
{
return 0;
}
});
}
开发者ID:apache,项目名称:apex-malhar,代码行数:29,代码来源:StoreUtils.java
示例2: setInput
import com.datatorrent.api.DefaultInputPort; //导入依赖的package包/类
public void setInput(DefaultInputPort input)
{
this.input = input;
}
开发者ID:apache,项目名称:apex-malhar,代码行数:5,代码来源:TupleWrapperOperator.java
注:本文中的com.datatorrent.api.DefaultInputPort类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论