We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8190b0c commit a648352Copy full SHA for a648352
1 file changed
README.md
@@ -29,8 +29,7 @@ public class Script implements BaseScript {
29
/**
30
* This code receives a data.x and data.y and returns data.z = data.x + data.y
31
*/
32
- public void execute(Map<String, Object> data, Map<String, Object> config, Map<String, Object> output) {
33
- //Map<String, Object> data = Spark.data();
+ public void execute(Map<String, Object> data, Map<String, Object> config, Map<String, Object> output, ApiClient api) {
34
Double x = (Double) data.get("x");
35
Double y = (Double) data.get("y");
36
Double z = x + y;
0 commit comments