本文整理汇总了Java中org.jnetpcap.util.config.JConfig.setProperty方法的典型用法代码示例。如果您正苦于以下问题:Java JConfig.setProperty方法的具体用法?Java JConfig.setProperty怎么用?Java JConfig.setProperty使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.jnetpcap.util.config.JConfig
的用法示例。
在下文中一共展示了JConfig.setProperty方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setNegativeTimeout
import org.jnetpcap.util.config.JConfig; //导入方法依赖的package包/类
/**
* Sets the when failed to resolve to a name, store the failure information in
* cache and set the negative hit timeout.
*
* @param negativeTimeout
* the new when failed to resolve to a name, store the failure
* information in cache and set the negative hit timeout
*/
public final void setNegativeTimeout(long negativeTimeout) {
JConfig.setProperty(String.format(PROPERTY_NEGATIVE_TIMEOUT, this.name
+ "."),
Long.toString(negativeTimeout));
}
示例2: setPositiveTimeout
import org.jnetpcap.util.config.JConfig; //导入方法依赖的package包/类
/**
* Sets the resolved to a name.
*
* @param positiveTimeout
* the new resolved to a name
*/
public final void setPositiveTimeout(long positiveTimeout) {
JConfig.setProperty(String.format(PROPERTY_POSITIVE_TIMEOUT, this.name
+ "."),
Long.toString(positiveTimeout));
}