petersbl Posted December 14, 2018 Posted December 14, 2018 I have a multiple combiners into which a single worker provides entities. While the worker is at a specific combiner, I want to check if that combiner's output buffer is full. I'd prefer not to create a separate process for each combiner as I have dozens. How do I code the process so that it is generic and that 1 process can work for any combiner? I'm hoping this is an easy question. Sorry if it's obvious. Thanks for your help.
jzhou Posted December 14, 2018 Posted December 14, 2018 I assume that your worker is located at the MemberInput Node of the Cominer I search Queue State, the Queue Name is: MyWorker.Location.Parent.Node.AssociatedObject.MyCombiner.OutputBuffer.Contents
petersbl Posted December 14, 2018 Author Posted December 14, 2018 Thanks so much! Worked like a charm! Best Regards. Petersbl
Toon Posted May 15, 2023 Posted May 15, 2023 Hi @jzhou, how would this work if I want to refer to the MemberOutput Node of a separator in an expression? I get lost at the following expression: Entity.Location.Parent.Node.AssociatedObject.Separator.Output.[what comes next?]
Recommended Posts