You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
In microcontroller environments TLS sockets are expensive in terms of memory (e.g. MicroPython needs a 16Kb contiguous block of free RAM to wrap TLS around a socket connection), so it's desirable to share a connection for monitor and other operations; but we don't want notifications to come crashing into the responses expected for other verbs.
Describe the solution you'd like
Decorate the monitor verb with metadata that requests the atServer holds a notification until other in progress operations are completed.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
In microcontroller environments TLS sockets are expensive in terms of memory (e.g. MicroPython needs a 16Kb contiguous block of free RAM to wrap TLS around a socket connection), so it's desirable to share a connection for
monitor
and other operations; but we don't want notifications to come crashing into the responses expected for other verbs.Describe the solution you'd like
Decorate the
monitor
verb with metadata that requests the atServer holds a notification until other in progress operations are completed.The text was updated successfully, but these errors were encountered: