in src/core/taskController.js [86:92]
_handleIncomingMessage(incomingData) {
const eventType = incomingData.ContentType;
if (CONTENT_TYPE_TO_EVENT_MAP[eventType]) {
this._triggerEvent(CONTENT_TYPE_TO_EVENT_MAP[eventType], incomingData);
}
this._triggerEvent(TASK_EVENTS.INCOMING_MESSAGE, incomingData);
}