-
Notifications
You must be signed in to change notification settings - Fork 2
/
destroy-manager.js
58 lines (40 loc) · 2.11 KB
/
destroy-manager.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
module.exports = {
friendlyName: 'Destroy manager',
description: 'Destroy the specified connection manager and all of its active connections.',
extendedDescription: 'This may involve destroying a pool and its connections, destroying multiple pools and their connections, doing nothing at all (if this manager just does ad-hoc connections), or something even more exotic. The implementation is left up to the driver.',
inputs: {
manager: {
friendlyName: 'Manager',
description: 'The connection manager instance to destroy.',
extendedDescription: 'Only managers built using the `createManager()` method of this driver are supported. Also, the database connection manager instance provided must not have been destroyed--i.e. once `destroyManager()` is called on a manager, it cannot be destroyed again (also note that all existing connections become inactive).',
example: '===',
required: true
},
meta:
require('../../constants/meta.input')
},
exits: {
success: {
description: 'The specified manager and all of its active connections were successfully destroyed.',
outputVariableName: 'report',
outputDescription: 'The `meta` property is reserved for custom driver-specific extensions.',
outputExample: {
meta: '==='
}
},
failed: {
friendlyName: 'Failed',
description: 'The provided connection manager (and/or any of its active connections) could not be destroyed.',
extendedDescription:
'Usually, this means the manager has already been destroyed. But depending on the driver '+
'it could also mean that database cannot be accessed. In production, this can mean that the database '+
'server(s) became overwhelemed or were shut off while some business logic was in progress.',
outputVariableName: 'report',
outputDescription: 'The `error` property is a JavaScript Error instance with more information and a stack trace. The `meta` property is reserved for custom driver-specific extensions.',
outputExample: {
error: '===',
meta: '==='
}
}
}
};