-
Notifications
You must be signed in to change notification settings - Fork 4
/
engine.html
54 lines (42 loc) · 1.4 KB
/
engine.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script>
// Include version 1 of the engine base library.
document.write('<link rel="import" href="' + window.Alteryx.LibDir + '1/lib/alteryx/engine/includes.html">');
</script>
<!-- Axios, a much better Promise based HTTP client for the browser and node.js -->
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script>
const globes = {
};
Alteryx.Plugin.DefineConnections = function(){
return {
IncomingConnections: [],
OutgoingConnections: [{
name: "Issues"
}]
};
};
Alteryx.Plugin.PI_Init = function(config){
};
Alteryx.Plugin.II_Init = function(metaInfo){
};
Alteryx.Plugin.II_PushRecords = function(data){
};
Alteryx.Plugin.II_AllClosed = function(){
Alteryx.Engine.SendMessage.CloseOutput(Alteryx.Plugin.DefineConnections().OutgoingConnections[0].name);
Alteryx.Engine.SendMessage.Complete();
};
Alteryx.Plugin.PI_PushAllRecords = function(recordLimit){
Alteryx.Engine.SendMessage.Complete();
};
Alteryx.Plugin.PI_Close = function(){
Alteryx.Engine.SendMessage.PI_Close();
};
</script>
</head>
<body>
</body>
</html>