Things I wish I knew when I started building reactive systems
Things I wish I knew when I started building reactive systems By Alvin Alexander. Last updated: February 21 2017 Read more about Things I wish I knew when I started building reactive systems This...
View ArticleAn example of Android StrictMode output (with improper database access)
An example of Android StrictMode output (with improper database access) By Alvin Alexander. Last updated: July 20 2017 I was just working with an example of how to use Android’s new Room Persistence...
View Article8 ways to do asynchronous processing in Android and counting
8 ways to do asynchronous processing in Android and counting By Alvin Alexander. Last updated: August 3 2017 URL https://android.jlelse.eu/8-ways-to-do-asynchronous-processing-in-android-and-c… Read...
View ArticleAndroid Room, database I/O, and Java 8 threads
Android Room, database I/O, and Java 8 threads By Alvin Alexander. Last updated: August 11 2018 I just started working with the Android Room database persistence library, and since you’re not supposed...
View ArticleThe Java 8 lambda Thread and Runnable syntax and examples
The Java 8 lambda Thread and Runnable syntax and examples By Alvin Alexander. Last updated: March 17 2019 As a quick note, here are some examples of the Java 8 lambda Thread and Runnable syntax. As a...
View ArticleAndroid: How to send a message from a Thread to a Handler
Android: How to send a message from a Thread to a Handler By Alvin Alexander. Last updated: August 11 2018 As a quick example of how to use a Thread with a basic Handler in an Android application, the...
View ArticleScala 2.12.5 compiler flag to let the backend run in parallel
Scala 2.12.5 compiler flag to let the backend run in parallel alvin May 14, 2018 - 6:19pm Read more about Scala 2.12.5 compiler flag to let the backend run in parallel I haven’t tried it yet, but as a...
View ArticleJava: How to get the name of the current thread
Java: How to get the name of the current thread By Alvin Alexander. Last updated: March 2 2019 When you’re working with multi-threaded programming in Java — such as when working with Thread, Runnable,...
View ArticleFlutter: A few ways to simulate slow-responding functions and methods
Flutter: A few ways to simulate slow-responding functions and methods By Alvin Alexander. Last updated: September 21 2019 As a quick note, here are a couple of examples of how to simulate a...
View ArticleDart futures are NOT run in a separate thread (they are run in the event loop)
Dart futures are NOT run in a separate thread (they are run in the event loop) By Alvin Alexander. Last updated: October 11 2019 I’ve been working with Flutter and Dart for several weeks now, and I...
View Article