All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.snapscript.core.link.FutureDefinition Maven / Gradle / Ivy

package org.snapscript.core.link;

import java.util.concurrent.FutureTask;

import org.snapscript.core.Statement;
import org.snapscript.core.error.InternalStateException;
import org.snapscript.core.module.Path;
import org.snapscript.core.scope.Scope;

public class FutureDefinition implements PackageDefinition {
   
   private final FutureTask result;
   private final Path path;
   
   public FutureDefinition(FutureTask result, Path path) {
      this.result = result;
      this.path = path;
   }

   @Override
   public Statement define(Scope scope, Path from) throws Exception {
      PackageDefinition definition = result.get();
      
      if(definition == null) {
         throw new InternalStateException("Could not compile '" + path + "'");
      }
      return definition.define(scope, from);
   }     
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy