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
Currently appserver.RPCGateway is registered in the rpc.Server for every app connection. This, although a quick solution at the time, results in the follow problems:
If apps disconnect/reconnect this will lead to memory leaks as we cannot unregister from an rpc.Server.
It becomes difficult to track number of multiplexed connections to the app and whether the app is connected with the same structure.
Additionally, the responsibilities of the ProcManager structure can be expanded, removing the need for visor.Visor to include app management logic.
Describe the solution you'd like
Only register one instance of appserver.RPCGateway
For each RPC method, include field for inputting the App Secret.
The text was updated successfully, but these errors were encountered:
Feature description
Currently
appserver.RPCGateway
is registered in therpc.Server
for every app connection. This, although a quick solution at the time, results in the follow problems:rpc.Server
.Additionally, the responsibilities of the
ProcManager
structure can be expanded, removing the need forvisor.Visor
to include app management logic.Describe the solution you'd like
appserver.RPCGateway
The text was updated successfully, but these errors were encountered: