|
|
@ -39,7 +39,7 @@ export default abstract class AbstractIpcService<M extends Microservice = Micros |
|
|
|
/** |
|
|
|
* Boot the IPC service |
|
|
|
*/ |
|
|
|
public async boot() { |
|
|
|
public override async boot() { |
|
|
|
// Create the IPC socket
|
|
|
|
this.__ipc = new RawIPC.IPC(); |
|
|
|
this.__ipc.config.id = this.NAME; |
|
|
@ -51,7 +51,7 @@ export default abstract class AbstractIpcService<M extends Microservice = Micros |
|
|
|
/** |
|
|
|
* Shutdown the IPC service |
|
|
|
*/ |
|
|
|
public async shutdown() { |
|
|
|
public override async shutdown() { |
|
|
|
await this.shutdownIpc(this.__ipc); |
|
|
|
this.__ipc = null; |
|
|
|
} |
|
|
|