I'm building a mobile App which is multiply functions. I have three buttons in my page. This buttons run same function with different parameters. Every button spend some times(10sn) to get response from request(axios). Users can push buttons one after the other in a a few second. Therefore, I want to queue the processes when I press the buttons one after the other. Whichever button I pressed first, that action should be done, then the other action should be done. It's like a temporary memory operation. Do you know any way to do it?