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
Here's the problem:
I have LifeCycleNode implemented as component. The node has to received some data from a service to pass Configuration state. I bet you've already got the point. The configuration func is deadlocked. Because I can't return control to a component_container, cause configuration is not finished. I can't finish configuration, cause I've not received the data from the service (stiil awaiting). To receive response some of spins has to be called, but I can't do this, because my node will be double-registrated in that case. I cannot create another node (for client purpose) and destroy it after response is received, because any new node inside component derive name from parent. I cannot create sub-node, cause my node is derived from LifeCycleNode.
May be messed up a little bit, but it seems to me, that is is a bug.
The text was updated successfully, but these errors were encountered:
@DrShIkIgAmy thanks for creating issue, but i am not really sure about the case that you described. could you provide self-contained reproducible sample to this problem you have?
Here's the problem:
I have LifeCycleNode implemented as component. The node has to received some data from a service to pass Configuration state. I bet you've already got the point. The configuration func is deadlocked. Because I can't return control to a component_container, cause configuration is not finished. I can't finish configuration, cause I've not received the data from the service (stiil awaiting). To receive response some of spins has to be called, but I can't do this, because my node will be double-registrated in that case. I cannot create another node (for client purpose) and destroy it after response is received, because any new node inside component derive name from parent. I cannot create sub-node, cause my node is derived from LifeCycleNode.
May be messed up a little bit, but it seems to me, that is is a bug.
The text was updated successfully, but these errors were encountered: