User bio
404 bio not found
Member since Nov 11, 2015
Posts:
Replies:
You can use BPs to do that automatically.
BS (pool size 1) sends file to BP (1 request, pool size 1).
BP parses the file and sends X async requests to BO (pool size >1) for processing, total request count is stored in BP.
BP OnError/OnResponse methods are called once rows are being processed, maintain count here.
Once OnError/OnResponse count matches original count send a final batch request.
a-z, A-Z only. Everything else is considered non-alphabetic, although I guess non-latin characters would be a more correct term.
Open Exchange applications:
Certifications & Credly badges:



Global Masters badges:







Followers:
Following:
Eduard has not followed anybody yet.
Another way you can do this is by splitting web (rest) api from the business logic. I think ideally your REST handler method does only the following two things:
This way you can focus on unit testing your underlying api layer and keep the REST parts of your implementation as simple as possible.