Skip to content

Commit 9155e22

Browse files
author
MikaelGRA
committed
Update README.md
1 parent ef68c36 commit 9155e22

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,19 @@ Components implementing IComponent is managed and connected by the Composition S
2828

2929
In order to implement a Component, one must implement the IComponent interface:
3030

31-
![IMAGE NOT FOUND](https://raw.githubusercontent.com/insero-software/component-composition-framework/master/Documentation/IComponent.png)
31+
![IComponent Image](https://raw.githubusercontent.com/insero-software/component-composition-framework/master/Documentation/IComponent.png)
3232

3333
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.
3434

3535
If the IComponent must allow other components to communicate with it, it can implement the IConnectableComponent interface:
3636

37-
!PIC2.png!
37+
![IConnectable Component Imagee](https://raw.githubusercontent.com/insero-software/component-composition-framework/master/Documentation/IConnectableComponent.png)
3838

3939
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.
4040

4141
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:
4242

43-
!PIC3.png!
43+
![IConnecting Component Imagee](https://raw.githubusercontent.com/insero-software/component-composition-framework/master/Documentation/IConnectableComponent.png)
4444

4545
This is a generic interface of the IComponentCommunication implementation the IComponent must connect to.
4646

0 commit comments

Comments
 (0)