I made an auto file copying system.
When I receive an email, it makes a specific file copied in Google drive, then post the download link of it on Flow.
In order to prevent the copied file from piling up in Google drive, it must be removed at some point after some amount of time. So I’m considering to give it some delay(1 day) between Posting and Removing file.
My question is what might happen if another email being sent while the state is in delay state.
Does it make another thread and do parallel tasks?
or does it immediately stop delaying and execute removement process of previous task then start from the beginning?
or does it immediately stop delaying and escape the loop then start from the beginning without finishing the previous task?
if you have any idea, please comment. Thnks.