Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 56 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,66 @@ class AsyncClient {
return this._client.connected;
}

set connected (connectedNew) {
this._client.connected = connectedNew;
}

get disconnecting () {
return this._client.disconnecting;
}

set disconnecting (disconnectingNew) {
this._client.disconnecting = disconnectingNew;
}

get disconnected () {
return this._client.disconnected;
}

set disconnected (disconnectedNew) {
this._client.disconnected = disconnectedNew;
}

get reconnecting () {
return this._client.reconnecting;
}

set reconnecting (reconnectingNew) {
this._client.reconnecting = reconnectingNew;
}

get incomingStore () {
return this._client.incomingStore;
}

set incomingStore (incomingStoreNew) {
this._client.incomingStore = incomingStoreNew;
}

get outgoingStore () {
return this._client.outgoingStore;
}

set outgoingStore (outgoingStoreNew) {
this._client.outgoingStore = outgoingStoreNew;
}

get options () {
return this._client.options;
}

set options (optionsNew) {
this._client.options = optionsNew;
}

get queueQoSZero () {
return this._client.queueQoSZero;
}

set queueQoSZero (queueQoSZeroNew) {
this._client.queueQoSZero = queueQoSZeroNew;
}

publish (...args) {
return new Promise((resolve, reject) => {
this._client.publish(...args, (err, result) => {
Expand Down