Skip to content

Commit 2255be9

Browse files
committed
feat(connector): return promise on end
1 parent d22c911 commit 2255be9

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

src/connector/base.js

+15-5
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,21 @@ class Connector {
2727
}
2828

2929
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;
30+
const closeDataSocket = new Promise(resolve => {
31+
if (this.dataSocket) this.dataSocket.end();
32+
else resolve();
33+
});
34+
const closeDataServer = new Promise(resolve => {
35+
if (this.dataServer) this.dataServer.close(() => resolve());
36+
else resolve();
37+
});
38+
39+
return Promise.all([closeDataSocket, closeDataServer])
40+
.then(() => {
41+
this.dataSocket = null;
42+
this.dataServer = null;
43+
this.type = false;
44+
});
3545
}
3646
}
3747
module.exports = Connector;

0 commit comments

Comments
 (0)