Mercurial > pub > ImplabNet
comparison Implab/Components/IInitializable.cs @ 184:d6a8cba73acc ref20160224
working on runnable component
author | cin |
---|---|
date | Sat, 16 Apr 2016 03:23:26 +0300 |
parents | 240aa6994018 |
children | 8200ab154c8a |
comparison
equal
deleted
inserted
replaced
183:4f82e0f161c3 | 184:d6a8cba73acc |
---|---|
9 public interface IInitializable { | 9 public interface IInitializable { |
10 /// <summary> | 10 /// <summary> |
11 /// Completes initialization. | 11 /// Completes initialization. |
12 /// </summary> | 12 /// </summary> |
13 /// <remarks> | 13 /// <remarks> |
14 /// Normally virtual shouldn't be called from the constructor, due to the incomplete object state, but | 14 /// Normally virtual methods shouldn't be called from the constructor, due to the incomplete object state, but |
15 /// they can be called from this method. This method is also usefull when we constructing a complex grpah | 15 /// they can be called from this method. This method is also usefull when we constructing a complex grpah |
16 /// of components where cyclic references may take place. | 16 /// of components where cyclic references may take place. |
17 /// </remarks> | 17 /// </remarks> |
18 void Init(); | 18 void Init(); |
19 } | 19 } |