Problem I have multiple places where I need to make ajax requests to fetch the items corresponding to some ids. […]
Tag: asynchronous
Asynchronous Code Inspections
Problem Rubberduck code inspections can take quite a while to complete, so I decided to run them on a background […]
Getting messages asynchronously using MailKit
Problem I’m writing a prototype for an application that uses MailKit and imap to connect to gmail. It’s the first […]
React async useEffect with loading and error state
Problem This is my first time trying to add clean error handling and loading notification for async requests in my […]
Asynchronous HTTP JSON request
Problem For asynchronous requests, I use Alamofire. I have created one method for requesting async data. func requestData(method: Method, urlString: […]
Continuously receive messages async from Azure Service Bus Queues
Problem I’d like to get input on my approach of continuously receiving messages from an Azure Service Bus queue using […]
Log-reading & String-matching with hashtable for fastest execution speed
Problem I’m currently enjoying this exercise I’m working on for fun: I wish to write optimized code for the searching […]
Execute coroutines in pool
Problem I want to run all the coroutines from the list in a pool of constant size and would like […]
Performing an action which may return other actions to be performed, concurrently
Problem I have a program which, at its core, involves repeatedly performing an action on some value, and based on […]
Calling many web services asynchronously
Problem I need to process a bunch of completed orders (thousands). To make it faster, I’m using a SemaphoreSlim to […]