Hi, I am looking at the best way to push notifications from a server to clients over flight and I have a few questions on the approach:
A. Is there a standard way of doing it and/or does this fundamentally go against flight philosophy? B. One approach is to run a doGet and then have the server push notifications as Flight Payloads on the corresponding FlightDataStream as they become available, Questions: - is FlightStreamReader.Next() blocking and is it guarantee to wake up on each corresponding server side FlightDataStream.Next()? - if I use this approach can initiate new flight calls from the same client while the same client, before the stream returned by get is closed? I guess in general is interesting to know whether one can process multiple Get streams in parallel? - are there any async hooks for flight? Either for listening to a data stream or for processing responses to flight calls? Thank you Radu