本文整理汇总了Java中org.apache.zeppelin.interpreter.WrappedInterpreter类的典型用法代码示例。如果您正苦于以下问题:Java WrappedInterpreter类的具体用法?Java WrappedInterpreter怎么用?Java WrappedInterpreter使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
WrappedInterpreter类属于org.apache.zeppelin.interpreter包,在下文中一共展示了WrappedInterpreter类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getDepInterpreter
import org.apache.zeppelin.interpreter.WrappedInterpreter; //导入依赖的package包/类
private DepInterpreter getDepInterpreter() {
InterpreterGroup intpGroup = getInterpreterGroup();
if (intpGroup == null) return null;
synchronized (intpGroup) {
for (Interpreter intp : intpGroup) {
if (intp.getClassName().equals(DepInterpreter.class.getName())) {
Interpreter p = intp;
while (p instanceof WrappedInterpreter) {
p = ((WrappedInterpreter) p).getInnerInterpreter();
}
return (DepInterpreter) p;
}
}
}
return null;
}
示例2: getSparkInterpreter
import org.apache.zeppelin.interpreter.WrappedInterpreter; //导入依赖的package包/类
private SparkInterpreter getSparkInterpreter() {
InterpreterGroup intpGroup = getInterpreterGroup();
if (intpGroup == null) {
return null;
}
synchronized (intpGroup) {
for (Interpreter intp : intpGroup){
if (intp.getClassName().equals(SparkInterpreter.class.getName())) {
Interpreter p = intp;
while (p instanceof WrappedInterpreter) {
p = ((WrappedInterpreter) p).getInnerInterpreter();
}
return (SparkInterpreter) p;
}
}
}
return null;
}
示例3: getSparkInterpreter
import org.apache.zeppelin.interpreter.WrappedInterpreter; //导入依赖的package包/类
private SparkInterpreter getSparkInterpreter() {
InterpreterGroup intpGroup = getInterpreterGroup();
if (intpGroup == null) {
return null;
}
Interpreter p = getInterpreterInTheSameSessionByClassName(SparkInterpreter.class.getName());
if (p == null) {
return null;
}
while (p instanceof WrappedInterpreter) {
p = ((WrappedInterpreter) p).getInnerInterpreter();
}
return (SparkInterpreter) p;
}
示例4: getRemoteInterpreterProcess
import org.apache.zeppelin.interpreter.WrappedInterpreter; //导入依赖的package包/类
private RemoteInterpreterProcess getRemoteInterpreterProcess() {
if (interpreterGroup.size() == 0) {
throw new RuntimeException("Can't get remoteInterpreterProcess");
}
Interpreter p = interpreterGroup.get(0);
while (p instanceof WrappedInterpreter) {
p = ((WrappedInterpreter) p).getInnerInterpreter();
}
if (p instanceof RemoteInterpreter) {
return ((RemoteInterpreter) p).getInterpreterProcess();
} else {
throw new RuntimeException("Can't get remoteInterpreterProcess");
}
}
示例5: getInterpreterA
import org.apache.zeppelin.interpreter.WrappedInterpreter; //导入依赖的package包/类
public MockInterpreterA getInterpreterA() {
InterpreterGroup interpreterGroup = getInterpreterGroup();
for (Interpreter intp : interpreterGroup) {
if (intp.getClassName().equals(MockInterpreterA.class.getName())) {
Interpreter p = intp;
while (p instanceof WrappedInterpreter) {
p = ((WrappedInterpreter) p).getInnerInterpreter();
}
return (MockInterpreterA) p;
}
}
return null;
}
示例6: getDepInterpreter
import org.apache.zeppelin.interpreter.WrappedInterpreter; //导入依赖的package包/类
private DepInterpreter getDepInterpreter() {
Interpreter p = getInterpreterInTheSameSessionByClassName(DepInterpreter.class.getName());
if (p == null) {
return null;
}
while (p instanceof WrappedInterpreter) {
p = ((WrappedInterpreter) p).getInnerInterpreter();
}
return (DepInterpreter) p;
}