Examples of RTExecutionContext


Examples of org.openquark.cal.internal.runtime.lecc.RTExecutionContext

     * @param properties the properties to be associated with the execution context.
     * @param classloader the class loader for loading foreign classes and accessing resources when running in standalone JAR mode. Must be non-null.
     * @return an execution context for use with standalone JARs.
     */
    public static ExecutionContext makeExecutionContext(final ExecutionContextProperties properties, final ClassLoader classloader) {
        return new RTExecutionContext(properties, new StandaloneRuntimeEnvironment(classloader, new StandaloneJarResourceAccess(classloader)));
    }
View Full Code Here

Examples of org.openquark.cal.internal.runtime.lecc.RTExecutionContext

     * @param properties
     * @return an instance of ExecutionContext
     */
    @Override
    public ExecutionContext makeExecutionContext(ExecutionContextProperties properties) {
        return new RTExecutionContext(properties, null);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.