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 starting point for any Component is the “Start” method, which is called by the Composition Service when it is determined the Component should be started. The Name and Description properties are strictly for debugging purposes.
34
34
35
35
If the IComponent must allow other components to communicate with it, it can implement the IConnectableComponent interface:
Notice that the IComponentCommunication interface does not require any implementation. It is up to the user to define the methods on an interface that extends from this, that can be exposed to other IComponents.
40
40
41
41
Finally, we have an interface that allows for a components to connect to another components. This interface is called IConntingComponent<TComponentCommunication> and can be seen below:
0 commit comments