I have this situation:
store = simpy.FilterStore(env, capacity=N)
Now distinguishable parts (say, all having different part numbers) arrive and are put in the store. As the capacity is limited, a queue forms.
If I look at store.put_queue I get a list with entries „StorePut() object at…. .
How can I find out, which one of the parts is ‚hidden‘ in a given StorePut() object?
It must be somewhere in this object, as once it is in the store, I can find it in the store.items list.
Same question for the StoreGet() object.
Any help is greatly appreciated!