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

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

package org.snapscript.core.link;

import java.util.concurrent.FutureTask;

import org.snapscript.core.Execution;
import org.snapscript.core.error.InternalStateException;
import org.snapscript.core.module.Path;
import org.snapscript.core.result.Result;
import org.snapscript.core.scope.Scope;

public class FutureExecution extends Execution {
   
   private final FutureTask result;
   private final Path path;
   
   public FutureExecution(FutureTask result, Path path) {
      this.result = result;
      this.path = path;
   }

   @Override
   public Result execute(Scope scope) throws Exception {
      Execution execution = result.get();
      
      if(execution == null) {
         throw new InternalStateException("Could not execute '" + path + "'");
      }
      return execution.execute(scope);
   }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy