Consider allowing Public API Responses to be used in the EHL.
One of the things I REALLY LIKE about Workers is that receiving a Public API message (request or response) requires a case only in the MHL, whereas receiving the same kind of message in an event-based framework requires a case in both the EHL and MHL.
Currently, though, sending a Public API Response in Workers to announce a user action (e.g. button click) requires an EHL case to capture the user action and an MHL case to send the response. Also needed is a Local API Request to go from EHL to MHL.
It would be great to eliminate the need for the MHL case when sending a response.
Seems like there are two ways this change could be implemented, in order to share the Response Cases with the EHL.
Send an event to the EHL from the MHL Initialize case.
Store the Response Cases in a DVR and use read/write VIs instead of bundle/unbundle.
Thanks for considering this idea!