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
The awkward bit here to figure out would be threading. Jetty's HTTP handlers run on its internal threads. We'll need a nice mechanism to send/receive fjåge messages from these threads.
A standalone REST Agent that adds a new Handler to the WebServer won't work, since the Handler will get called on the jetty threads, but it's not possible to send messages from those threads since sending messages is only allowed from the Agent's threads.
We would like to have a REST-based mechanism to set and get parameters on all agents in a
MasterContainer
.The text was updated successfully, but these errors were encountered: