Hi All, Is there a recommended way of passing state stores around across different classes? The problem is state store can be fetched only if you have access to the context and in most of the scenarios look up to state store somewhere inside another class. I can think of two options. Either add state store to thread local and access it or split the logic into multiple functions to fit everything inside an operator. But I wanted to check if there is any better or recommended approach.
Thanks