Exemple #1
0
 public Account(IPlatformClientBuilder setting)
 {
     Builder = setting;
     Stream = new StreamManager(this);
     Notification = new NotificationManager(this);
 }
Exemple #2
0
 public Stream(CircleInfo source, StreamManager manager)
 {
     _activities = new ObservableCollection<Activity>();
     _syncer = new System.Threading.SemaphoreSlim(1, 1);
     Circle = source;
 }