public System.IDisposable Subscribe(System.IObserver <System.Collections.Generic.KeyValuePair <string, object> > observer)
 {
     throw null;
 }
Beispiel #2
0
 public virtual System.IDisposable Subscribe(System.IObserver <System.Collections.Generic.KeyValuePair <string, object?> > observer, System.Predicate <string>?isEnabled)
 {
     throw null;
 }
 protected override System.IDisposable SubscribeCore(System.IObserver <T> observer)
 {
     throw null;
 }
Beispiel #4
0
 public virtual System.IDisposable Subscribe(System.IObserver <System.Collections.Generic.KeyValuePair <string, object> > observer, System.Func <string, object, object, bool> isEnabled)
 {
     throw null;
 }
Beispiel #5
0
 protected abstract System.IDisposable SubscribeCore(System.IObserver <T> observer);
 public Unsubscriber(List <System.IObserver <T> > observers, System.IObserver <T> observer)
 {
     _observers = observers;
     _observer  = observer;
 }
 public static System.IObserver <T> Synchronize <T>(System.IObserver <T> observer, System.Reactive.Concurrency.AsyncLock asyncLock)
 {
     throw null;
 }
Beispiel #8
0
 public virtual System.IDisposable Subscribe(System.IObserver <System.Collections.Generic.KeyValuePair <string, object?> > observer, System.Func <string, object?, object?, bool>?isEnabled, System.Action <System.Diagnostics.Activity, object?>?onActivityImport = null, System.Action <System.Diagnostics.Activity, object?>?onActivityExport = null)
 {
     throw null;
 }
 public static System.IObserver <T> Synchronize <T>(System.IObserver <T> observer, bool preventReentrancy)
 {
     throw null;
 }
 public static System.IObserver <T> Synchronize <T>(System.IObserver <T> observer, object gate)
 {
     throw null;
 }
 public static System.IObserver <T> Synchronize <T>(System.IObserver <T> observer)
 {
     throw null;
 }
 public static System.IObserver <T> NotifyOn <T>(this System.IObserver <T> observer, System.Threading.SynchronizationContext context)
 {
     throw null;
 }
 public static System.IObserver <T> NotifyOn <T>(this System.IObserver <T> observer, System.Reactive.Concurrency.IScheduler scheduler)
 {
     throw null;
 }
 public System.IDisposable Subscribe(System.IObserver <System.Collections.Generic.KeyValuePair <string, object> > observer)
 {
     return(default(System.IDisposable));
 }
 public static System.Action <System.Reactive.Notification <T> > ToNotifier <T>(this System.IObserver <T> observer)
 {
     throw null;
 }
 public virtual System.IDisposable Subscribe(System.IObserver <System.Collections.Generic.KeyValuePair <string, object> > observer, System.Predicate <string> isEnabled)
 {
     return(default(System.IDisposable));
 }
 public static System.IDisposable SubscribeSafe <T>(this System.IObservable <T> source, System.IObserver <T> observer)
 {
     throw null;
 }
Beispiel #18
0
 public System.IDisposable Subscribe(System.IObserver <T> observer)
 {
     throw null;
 }
 public static void Subscribe <T>(this System.IObservable <T> source, System.IObserver <T> observer, System.Threading.CancellationToken token)
 {
 }
Beispiel #20
0
 public static System.IObserver <T> Checked <T>(this System.IObserver <T> observer)
 {
     throw null;
 }
Beispiel #21
0
 public IDisposable Subscribe(System.IObserver <int> observer)
 {
     _observers.Add(observer);
     return(new Unsubscriber <int>(_observers, observer));
 }