Bookmarks tagged [async]
https://flaviocopes.com/javascript-async-defer/
When loading a script on an HTML page, you need to be careful not to harm the loading performance of the page. Depending on where and how you add your scripts to an HTML page will influence the loadin...
- tags: javascript, async, defer
https://coryrylan.com/blog/using-angular-forms-with-async-data
Most single page apps deal with asynchronous API calls in conjunction with user input in some way. Often it’s not clear how or what the best practices are when dealing with async data and forms togeth...
- 📆 published on: 2018-01-28
- tags: angular, forms, async
- source code
https://ultimatecourses.com/blog/angular-ngif-async-pipe
Dealing with async operations with the async pipe takes care of subscribing to Observable streams/async stuff like Promises for us.
There are a few common gotchas when dealing with purely cold Observ...
- 📆 published on: 2018-07-18
- tags: angular, async, asynchronous, observable
https://www.nurkiewicz.com/2013/05/java-8-definitive-guide-to.html
Examples of using and combining CompletableFuture
API
- 📆 published on: 2013-05-09
- tags: java, asynchronous, async
https://www.whitebyte.info/programming/java/asynchronous-does-not-work-from-inside-the-same-ejb
The @Asynchronous annotation does not work from inside the same EJB. The solution is to use a separate EJB that wraps the async Method.
- tags: javaee, ejb, asynchronous, async
http://www.codingpedia.org/ama/parallel-calls-with-async-await-in-javascript-i-promise-you-all-perfo...
I was blown away about the simplicity and performance gain of making parallel calls with the new async-await feature in javascript. See the blog post to understand why.
- 📆 published on: 2017-11-13
- tags: node.js, async-await, async, javascript
https://www.youtube.com/watch?v=SrNQS8J67zc
This talk will explore the conceptual underpinnings of asynchronous programming options, and the drawbacks and advantages to each. JS has supported callbacks...
- 📆 published on: 2018-06-27
- tags: javascript, async
https://medium.com/netflix-techblog/zuul-2-the-netflix-journey-to-asynchronous-non-blocking-systems-...
We recently made a major architectural change to Zuul, our cloud gateway. Did anyone even notice!?
- 📆 published on: 2016-09-21
- tags: async
- source code
https://engineering.salesforce.com/how-apache-kafka-inspired-our-platform-events-architecture-2f351f...
There’s a class of scalability challenges that are best approached using an asynchronous, event-driven architecture — particularly when it comes to doing data integrations.
- 📆 published on: 2018-02-01
- tags: apache-kafka, architecture, async
Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers & clients.
- tags: async, event-driven, grpc
- source code
http://www.codingpedia.org/ama/how-to-make-parallel-calls-in-java-with-completablefuture-example
This blog post presents an example about how to make parallel calls in Java with CompletableFuture in an asynchronous fashion. It resembles somehow the parallel calls pattern one can achieve in JavaSc...