-
Notifications
You must be signed in to change notification settings - Fork 0
/
dynamic.js
81 lines (74 loc) · 2.11 KB
/
dynamic.js
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
require('util').inspect.defaultOptions.depth = null
const grpc = require('@grpc/grpc-js')
const protoLoader = require('@grpc/proto-loader');
const PROTO_PATH = './temporal/api/workflowservice/v1/service.proto'
const packageDefinition = protoLoader.loadSync(
PROTO_PATH,
{
keepCase: true,
longs: String,
enums: String,
defaults: true,
oneofs: true,
includeDirs: ['./api']
}
)
const rootDescriptor = grpc.loadPackageDefinition(packageDefinition)
const workflowserviceDescriptor = rootDescriptor.temporal.api.workflowservice.v1
const client = new workflowserviceDescriptor.WorkflowService('localhost:7233', grpc.credentials.createInsecure())
const callback = (err, results) => {
if (err) {
console.log(err)
} else {
// This is a plain object
console.log(results)
}
}
const listNamespaces = () => {
client.listNamespaces({}, callback)
}
const startWorkflow = () => {
const req = {
namespace: 'develop',
workflow_id: 'grpc-test-order-VBLPyXIucO-25',
workflow_type: {
name: 'OrderWorkflow',
},
task_queue: {
name: 'ORDER_TASK_QUEUE',
},
input: {
payloads: [
{
data: Buffer.from('"VBLPyXIucO"'),
metadata: {
encoding: Buffer.from('json/plain')
}
}
]
},
request_id: 'random-request-id',
}
client.StartWorkflowExecution(req, callback)
}
const signalWorkflow = () => {
const req = {
namespace: 'develop',
workflow_execution: {
workflow_id: 'grpc-test-order-VBLPyXIucO-25',
},
signal_name: 'updateStatus',
input: {
payloads: [
{
data: Buffer.from('"node3"'),
metadata: {
'encoding': Buffer.from('json/plain')
}
}
]
},
request_id: 'random-request-id'
}
client.SignalWorkflowExecution(req, callback)
}