|
@ -30,7 +30,7 @@ export default class Supervisor extends InternalService |
|
|
/** |
|
|
/** |
|
|
* Link to other internal services |
|
|
* Link to other internal services |
|
|
*/ |
|
|
*/ |
|
|
public link(app: Microservice) { |
|
|
|
|
|
|
|
|
public override link(app: Microservice) { |
|
|
this.torrentSearch = app.service<TorrentSearchIpc>("Torrent Search"); |
|
|
this.torrentSearch = app.service<TorrentSearchIpc>("Torrent Search"); |
|
|
this.torrentManager = app.service<TorrentManager>("Torrent Manager"); |
|
|
this.torrentManager = app.service<TorrentManager>("Torrent Manager"); |
|
|
this.postProcessor = app.service<PostProcessor>("Post Processor"); |
|
|
this.postProcessor = app.service<PostProcessor>("Post Processor"); |
|
@ -39,7 +39,7 @@ export default class Supervisor extends InternalService |
|
|
/** |
|
|
/** |
|
|
* All services are booted and ready |
|
|
* All services are booted and ready |
|
|
*/ |
|
|
*/ |
|
|
public start() { |
|
|
|
|
|
|
|
|
public override start() { |
|
|
this.searchMovies(); |
|
|
this.searchMovies(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|