Hello,
I would like to know if there's a way to Stream an IObservable to a specific client. The StockTickr example shows a way to Stream stocks but it is streaming for all connected clients. Can we stream different data depending on the connected client's request?
public IObservable<Stock> StreamStocks()
{
return _stockTicker.StreamStocks();
}
StockTickr Example