I have a FilterStore and during my simulation there is a queue for the FilterStore.Get event at some times. Now I have two questions:
Is there a way to see the actual elements in the queue, not just the object number? With FilterStore.get_queue I get this output: [FilterStoreGet() object at 0x221a47c6080, FilterStoreGet() object at 0x221a47c6eb8]. But I would like a list with the actual names, for example [1,2,3].
Is there a way to manipulate the queue? I know the elements in the queue are beeing processed with FIFO, but I would like to do LIFO or SIRO.