async.md
July 15, 2021 · View on GitHub
Bookmarks tagged [async]
www.codever.land/bookmarks/t/async
Efficiently load JavaScript with defer and 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
Using Angular Forms with Async Data - Angular
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...
- :calendar: published on: 2018-01-28
- tags: angular, forms, async
- :octocat: source code
Handling Observables with NgIf and the Async Pipe
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...
- :calendar: published on: 2018-07-18
- tags: angular, async, asynchronous, observable
Java 8: Definitive guide to CompletableFuture
https://www.nurkiewicz.com/2013/05/java-8-definitive-guide-to.html
Examples of using and combining CompletableFuture API
- :calendar: published on: 2013-05-09
- tags: java, asynchronous, async
@Asynchronous does not work from inside the same EJB
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
Parallel calls with async-await in javascript - I promise you all performance and simplicity
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.
- :calendar: published on: 2017-11-13
- tags: node.js, async-await, async, javascript
Asynchrony: Under the Hood - Shelley Vohr - JSConf EU 2018 - YouTube
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...
- :calendar: published on: 2018-06-27
- tags: javascript, async
Zuul 2 : The Netflix Journey to Asynchronous, Non-Blocking Systems
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!?
- :calendar: published on: 2016-09-21
- tags: async
- :octocat: source code
How Apache Kafka Inspired Our Platform Events Architecture
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.
- :calendar: published on: 2018-02-01
- tags: apache-kafka, architecture, async
Netty: Home
Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers & clients.
- tags: async, event-driven, grpc
- :octocat: source code
How to make parallel calls in Java with CompletableFuture example – CodingpediaOrg
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...