public IObservable <Change <IFileReference, string> > Watch(int key)
 {
     return(_cache.Watch(key.ToString()));
 }
Example #2
0
 public IObservable <Change <SearchInfo, string> > Watch(string key)
 {
     return(_cache.Watch(key));
 }
Example #3
0
 /// <inheritdoc />
 public IObservable <Change <Device, string> > Watch(string key) =>
 _controllers?.Watch(key) ?? throw new ObjectDisposedException(nameof(Devices));
Example #4
0
 public IObservable <Change <TValue, TKey> > Watch(TKey key)
 => _cache.Watch(key);