Skip to content

Latest commit

 

History

History
83 lines (70 loc) · 6.11 KB

async.md

File metadata and controls

83 lines (70 loc) · 6.11 KB

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...


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...


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...


https://www.nurkiewicz.com/2013/05/java-8-definitive-guide-to.html

Examples of using and combining CompletableFuture API


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.


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.


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...


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!?


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.


https://netty.io/

Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers & clients.


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...