Haiethan1 / ValorantApp

1 stars 1 forks source link

Async call all api requests for users during timer #47

Closed Haiethan1 closed 5 months ago

Haiethan1 commented 6 months ago

Currently, the timed method will synchronously execute each user's api request, and doing so will impact the time it takes to complete the single timer method, which also increases the wait time for the next timed method to start

Look into asynchronously calling each user's api request at once without waiting for the previous, and then continue with code after all are completed. Background workers might help with this