Example #1
0
 public static TestObservableId of(StandardId id, ObservableSource obsSource)
 {
     return new TestObservableId(id, obsSource);
 }
Example #2
0
 public static TestObservableId of(string id, ObservableSource obsSource)
 {
     return new TestObservableId(id, obsSource);
 }
Example #3
0
 internal TestObservableId(string id, ObservableSource obsSource)
     : this(StandardId.of("test", id), obsSource)
 {
 }
Example #4
0
 internal TestObservableId(StandardId id, ObservableSource obsSource)
 {
     this.observableSource = obsSource;
     this.id = id;
 }
Example #5
0
 public virtual ObservableId withObservableSource(ObservableSource obsSource)
 {
     return new TestObservableId(id, obsSource);
 }