@@ -19,14 +19,13 @@ module.exports = (arg) => {
19
19
const subscriptions = { }
20
20
ps . id = Math . random ( )
21
21
return {
22
- subscribe : ( topic , options , handler , callback ) => {
22
+ subscribe : ( topic , handler , options , callback ) => {
23
23
const defaultOptions = {
24
24
discover : false
25
25
}
26
26
27
27
if ( typeof options === 'function' ) {
28
- callback = handler
29
- handler = options
28
+ callback = options
30
29
options = defaultOptions
31
30
}
32
31
@@ -39,14 +38,15 @@ module.exports = (arg) => {
39
38
if ( ! callback ) {
40
39
return Promise . reject ( NotSupportedError ( ) )
41
40
}
42
- return callback ( NotSupportedError ( ) )
41
+
42
+ return process . nextTick ( ( ) => callback ( NotSupportedError ( ) ) )
43
43
}
44
44
45
45
// promisify doesn't work as we always pass a
46
46
// function as last argument (`handler`)
47
47
if ( ! callback ) {
48
48
return new Promise ( ( resolve , reject ) => {
49
- subscribe ( topic , options , handler , ( err ) => {
49
+ subscribe ( topic , handler , options , ( err ) => {
50
50
if ( err ) {
51
51
return reject ( err )
52
52
}
@@ -55,24 +55,40 @@ module.exports = (arg) => {
55
55
} )
56
56
}
57
57
58
- subscribe ( topic , options , handler , callback )
58
+ subscribe ( topic , handler , options , callback )
59
59
} ,
60
- unsubscribe : ( topic , handler ) => {
60
+ unsubscribe : ( topic , handler , callback ) => {
61
61
if ( ! isNode ) {
62
- throw NotSupportedError ( )
62
+ if ( ! callback ) {
63
+ return Promise . reject ( NotSupportedError ( ) )
64
+ }
65
+
66
+ return process . nextTick ( ( ) => callback ( NotSupportedError ( ) ) )
63
67
}
64
68
65
69
if ( ps . listenerCount ( topic ) === 0 || ! subscriptions [ topic ] ) {
66
- throw new Error ( `Not subscribed to '${ topic } '` )
70
+ const err = new Error ( `Not subscribed to '${ topic } '` )
71
+
72
+ if ( ! callback ) {
73
+ return Promise . reject ( err )
74
+ }
75
+
76
+ return process . nextTick ( ( ) => callback ( err ) )
67
77
}
68
78
69
79
ps . removeListener ( topic , handler )
70
80
71
- // Drop the request once we are actualy done
81
+ // Drop the request once we are actually done
72
82
if ( ps . listenerCount ( topic ) === 0 ) {
73
83
subscriptions [ topic ] . abort ( )
74
84
subscriptions [ topic ] = null
75
85
}
86
+
87
+ if ( ! callback ) {
88
+ return Promise . resolve ( )
89
+ }
90
+
91
+ process . nextTick ( ( ) => callback ( ) )
76
92
} ,
77
93
publish : promisify ( ( topic , data , callback ) => {
78
94
if ( ! isNode ) {
@@ -118,7 +134,7 @@ module.exports = (arg) => {
118
134
}
119
135
}
120
136
121
- function subscribe ( topic , options , handler , callback ) {
137
+ function subscribe ( topic , handler , options , callback ) {
122
138
ps . on ( topic , handler )
123
139
124
140
if ( subscriptions [ topic ] ) {
0 commit comments