()
| 76 | } |
| 77 | |
| 78 | private _initTaskDispatcher(): void { |
| 79 | this._taskDispatcher = new TaskDispatcher({ |
| 80 | db: this._database.db, |
| 81 | }); |
| 82 | this._taskDispatcher.route( |
| 83 | "inbound_message", |
| 84 | this._handleInboundMessageTask, |
| 85 | ); |
| 86 | this._taskDispatcher.route("scheduled_task", this._handleScheduledTask); |
| 87 | } |
| 88 | |
| 89 | private _initMessageGateway(): void { |
| 90 | this._messageGateway = new MultiChannelMessageGateway(this._database.db); |