|
|
@ -22,7 +22,7 @@ export default class MovieSearchIpc extends IpcServerService |
|
|
|
/** |
|
|
|
* Boot the IPC interface |
|
|
|
*/ |
|
|
|
public async boot() { |
|
|
|
public override async boot() { |
|
|
|
this.searchService = this.app.service<MovieSearch>("Movie Search"); |
|
|
|
await super.boot(); |
|
|
|
} |
|
|
@ -30,7 +30,7 @@ export default class MovieSearchIpc extends IpcServerService |
|
|
|
/** |
|
|
|
* Install the the event handlers |
|
|
|
*/ |
|
|
|
protected installMessageHandlers() { |
|
|
|
protected override installMessageHandlers() { |
|
|
|
this.addMessageHandler("details", this.details); |
|
|
|
this.addMessageHandler("find", this.find); |
|
|
|
this.addMessageHandler("search", this.search); |
|
|
|