``` this.emitter.on('notification', async msg => await this.onNotification(msg)); ``` Can I just do: ``` this.emitter.on('notification', this.onNotification); ``` I'm not sure what benefit the `async` offers?