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
{{ message }}
This repository has been archived by the owner on Mar 10, 2023. It is now read-only.
Is your feature request related to a problem? Please describe.
Currently, you can't register LuaActor to System or Arbiter since it does not implement SystemService. In order to implement SystemService, LuaActor must impl Default.
The problem is, how do we implement Default for LuaActor? I think the reason actix requires Default for services is that it need to restart them when crashed?
Describe the solution you'd like
Figure out how to implement Default for LuaActor. Then implement SystemService, ArbiterService, and Supervised for it.
Describe alternatives you've considered
Not sure, need to understand more detail on actix's registry.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Currently, you can't register
LuaActor
toSystem
orArbiter
since it does not implementSystemService
. In order to implementSystemService
,LuaActor
must implDefault
.The problem is, how do we implement
Default
forLuaActor
? I think the reason actix requiresDefault
for services is that it need to restart them when crashed?Describe the solution you'd like
Figure out how to implement
Default
forLuaActor
. Then implementSystemService
,ArbiterService
, andSupervised
for it.Describe alternatives you've considered
Not sure, need to understand more detail on actix's registry.
The text was updated successfully, but these errors were encountered: