Multiple FloorStorage connected to one Queue
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi everyone!
I have an application where I’m using 6 FloorStorages to simulate a bin buffer. I have an elevator acting as a task executor to move these bins to a Queue. One of the conditions of my simulation is that the buffer should start full (all 6 FloorStorages filled), and the elevator must retrieve pallets from each FloorStorage based on certain conditions. However, when I start the simulation, the elevator always picks from the first FloorStorage only, and I can't get it to alternate between them, for example.
How can I make the elevator pick bins only from the FloorStorages I select? I was thinking of having a variable where, if I set it to 1, it picks from FloorStorage 1; if I set it to 2, it stops picking from FloorStorage 1 and starts with FloorStorage 2, and so on
Thank you!