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