Example #1
0
 public TestActorBehaviorDecorated() : base()
 {
     Become(BehaviorAttributeBuilder.BuildFromAttributes(this).ToArray());
 }
Example #2
0
 public DataFolder(string source) : base()
 {
     Source = source;
     Become(BehaviorAttributeBuilder.BuildFromAttributes(this).ToArray());
 }
Example #3
0
 public IndexRouter() : base()
 {
     Become(BehaviorAttributeBuilder.BuildFromAttributes(this).ToArray());;
 }
Example #4
0
 public Index(string name) : base()
 {
     Name = name;
     Become(BehaviorAttributeBuilder.BuildFromAttributes(this).ToArray());
 }