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


Java CLAParser.sendBundle方法代码示例

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


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

示例1: messageTransferred

import fi.tkk.netlab.dtn.ecla.CLAParser; //导入方法依赖的package包/类
/**
 * Method is called when a message is successfully transferred from
 * a node to another.
 * @param m The message that was transferred
 * @param from Node where the message was transferred from
 * @param to Node where the message was transferred to
 * @param firstDelivery Was the target node final destination of the message
 * and received this message for the first time.
 */
public void messageTransferred(Message m, DTNHost from, DTNHost to,
	boolean firstDelivery) {
	if (firstDelivery) {
		// We received a BundleMessage that should be passed to dtnd
		CLAParser p = DTN2Manager.getParser(to);
		if (p != null) { // Check that there's a CLA connected to this node
			p.sendBundle( (DTN2Manager.getBundle(m.getId())).file );
		}
	}
}
 
开发者ID:mdonnyk,项目名称:the-one-mdonnyk,代码行数:20,代码来源:DTN2Reporter.java

示例2: messageTransferred

import fi.tkk.netlab.dtn.ecla.CLAParser; //导入方法依赖的package包/类
/**
 * Method is called when a message is successfully transferred from
 * a node to another.
 * @param m The message that was transferred
 * @param from Node where the message was transferred from
 * @param to Node where the message was transferred to
 * @param firstDelivery Was the target node final destination of the message
 * and received this message for the first time.
 */
@Override
public void messageTransferred(Message m, DTNHost from, DTNHost to,
								boolean firstDelivery, boolean finalTarget) {
	if (firstDelivery && finalTarget) {
		// We received a BundleMessage that should be passed to dtnd
		CLAParser p = DTN2Manager.getParser(to);
		if (p != null) { // Check that there's a CLA connected to this node
			p.sendBundle((DTN2Manager.getBundle(m.getID())).file);
		}
	}
}
 
开发者ID:DSG-UniFE,项目名称:ICeDiM,代码行数:21,代码来源:DTN2Reporter.java


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