Hi, I had a question around expected behavior / API expectations.
Is subscribe a lazy call? What I mean by that is if I subscribe to a topic and then call poll(0), then is this first poll guaranteed to never return data? Will the data pre-fetch not start as soon as subscribe is called? Is this behavior also true for assign calls? I ask this because the 0.9.0 connect code does the following - subscribe(topicName); poll(0); <— expect this call to not return any data and then it starts its actual data consuming poll iterator. In the above case we can have potential data loss if the that first poll(0) actually did return some records. I see this code has been restructured for 0.10.0 timeframe. Thanks in advance for any help on this subject !! Mansi.