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

io.vertx.codetrans.Script Maven / Gradle / Ivy

There is a newer version: 4.1.0.Beta1
Show newest version
package io.vertx.codetrans;

import java.util.Collections;
import java.util.Map;

/**
 * @author Julien Viet
 */
public interface Script{

  String getSource();

  default void run() throws Exception {
    run(Collections.emptyMap());
  }

  void run(Map globals) throws Exception;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy