本文整理汇总了Java中backtype.storm.serialization.types.ListDelegateSerializer类的典型用法代码示例。如果您正苦于以下问题:Java ListDelegateSerializer类的具体用法?Java ListDelegateSerializer怎么用?Java ListDelegateSerializer使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ListDelegateSerializer类属于backtype.storm.serialization.types包,在下文中一共展示了ListDelegateSerializer类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: BlowfishTupleSerializer
import backtype.storm.serialization.types.ListDelegateSerializer; //导入依赖的package包/类
public BlowfishTupleSerializer(Kryo kryo, Map storm_conf) {
String encryption_key = null;
try {
encryption_key = (String) storm_conf.get(SECRET_KEY);
LOG.debug("Blowfish serializer being constructed ...");
if (encryption_key == null) {
throw new RuntimeException(
"Blowfish encryption key not specified");
}
byte[] bytes = Hex.decodeHex(encryption_key.toCharArray());
_serializer = new BlowfishSerializer(new ListDelegateSerializer(),
bytes);
} catch (org.apache.commons.codec.DecoderException ex) {
throw new RuntimeException("Blowfish encryption key invalid", ex);
}
}
开发者ID:zhangjunfang,项目名称:jstorm-0.9.6.3-,代码行数:17,代码来源:BlowfishTupleSerializer.java
示例2: BlowfishTupleSerializer
import backtype.storm.serialization.types.ListDelegateSerializer; //导入依赖的package包/类
public BlowfishTupleSerializer(Kryo kryo, Map storm_conf) {
String encryption_key = null;
try {
encryption_key = (String) storm_conf.get(SECRET_KEY);
LOG.debug("Blowfish serializer being constructed ...");
if (encryption_key == null) {
throw new RuntimeException("Blowfish encryption key not specified");
}
byte[] bytes = Hex.decodeHex(encryption_key.toCharArray());
_serializer = new BlowfishSerializer(new ListDelegateSerializer(), bytes);
} catch (org.apache.commons.codec.DecoderException ex) {
throw new RuntimeException("Blowfish encryption key invalid", ex);
}
}
开发者ID:kkllwww007,项目名称:jstrom,代码行数:15,代码来源:BlowfishTupleSerializer.java
示例3: BlowfishTupleSerializer
import backtype.storm.serialization.types.ListDelegateSerializer; //导入依赖的package包/类
public BlowfishTupleSerializer(Kryo kryo, Map storm_conf) {
String encryption_key = null;
try {
encryption_key = (String)storm_conf.get(SECRET_KEY);
LOG.debug("Blowfish serializer being constructed ...");
if (encryption_key == null) {
throw new RuntimeException("Blowfish encryption key not specified");
}
byte[] bytes = Hex.decodeHex(encryption_key.toCharArray());
_serializer = new BlowfishSerializer(new ListDelegateSerializer(), bytes);
} catch (org.apache.commons.codec.DecoderException ex) {
throw new RuntimeException("Blowfish encryption key invalid", ex);
}
}
开发者ID:metamx,项目名称:incubator-storm,代码行数:15,代码来源:BlowfishTupleSerializer.java
注:本文中的backtype.storm.serialization.types.ListDelegateSerializer类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论