本文整理汇总了Java中fi.tkk.netlab.dtn.ecla.CLAParser类的典型用法代码示例。如果您正苦于以下问题:Java CLAParser类的具体用法?Java CLAParser怎么用?Java CLAParser使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
CLAParser类属于fi.tkk.netlab.dtn.ecla包,在下文中一共展示了CLAParser类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的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
示例3: getParser
import fi.tkk.netlab.dtn.ecla.CLAParser; //导入依赖的package包/类
/**
* Returns the ECL parser associated with the host.
* @param host the host who's parser to return
* @return the host's parser.
*/
public static CLAParser getParser(DTNHost host) {
return DTN2Manager.CLAs.get(host);
}
开发者ID:mdonnyk,项目名称:the-one-mdonnyk,代码行数:9,代码来源:DTN2Manager.java
注:本文中的fi.tkk.netlab.dtn.ecla.CLAParser类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论