We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d22c911 commit 2255be9Copy full SHA for 2255be9
src/connector/base.js
@@ -27,11 +27,21 @@ class Connector {
27
}
28
29
end() {
30
- if (this.dataSocket) this.dataSocket.end();
31
- if (this.dataServer) this.dataServer.close();
32
- this.dataSocket = null;
33
- this.dataServer = null;
34
- this.type = false;
+ const closeDataSocket = new Promise(resolve => {
+ if (this.dataSocket) this.dataSocket.end();
+ else resolve();
+ });
+ const closeDataServer = new Promise(resolve => {
35
+ if (this.dataServer) this.dataServer.close(() => resolve());
36
37
38
+
39
+ return Promise.all([closeDataSocket, closeDataServer])
40
+ .then(() => {
41
+ this.dataSocket = null;
42
+ this.dataServer = null;
43
+ this.type = false;
44
45
46
47
module.exports = Connector;
0 commit comments