예제 #1
0
파일: Topic.cs 프로젝트: ashic/Hermes
 public Topic(
     Facade.Topic topic,
     RestClient restClient)
     : base((string)topic.Id)
 {
     this.topic      = topic;
     this.restClient = restClient;
 }
예제 #2
0
 public SubscriptionToFeed(Facade.Topic topic, RestClient restClient, TimeSpan interval, IScheduler scheduler = null)
     : base(topic, restClient, interval, scheduler)
 {
 }