private Object unPackSipNode(Object object) {
if (object == null) {
return null;
}
if (object instanceof SIPNode) {
return handleSingleSipNode((SIPNode) object);
}
if (object instanceof Collection) {
return Collections2.transform((Collection) object, new Function<Object, Object>() {
@Override
public Object apply(Object input) {
if (!(input instanceof SIPNode)) {
return input;
}
return handleSingleSipNode((SIPNode) input);
}
});
}
return object;
}
FetchTaskProcessor.java 文件源码
java
阅读 36
收藏 0
点赞 0
评论 0
项目:vscrawler
作者:
评论列表
文章目录