use of com.twosigma.beakerx.kotlin.evaluator.KotlinEvaluator in project beakerx by twosigma.
the class Kotlin method main.
public static void main(final String[] args) throws InterruptedException, IOException {
KernelRunner.run(() -> {
String id = uuid();
KotlinEvaluator e = new KotlinEvaluator(id, id, getKernelParameters());
KernelSocketsFactoryImpl kernelSocketsFactory = new KernelSocketsFactoryImpl(new KernelConfigurationFile(args));
return new Kotlin(id, e, kernelSocketsFactory);
});
}
Aggregations