Kotlin
-
Service to Service call patterns – GKE with Anthos Service Mesh on a single cluster
This is second in a series of posts exploring service to service call patterns in some of the application runtimes…
Read More » -
Service to Service call patterns in Google Cloud – GKE
This is a series of posts that will explore service to service call patterns in some of the application runtimes…
Read More » -
Kotlin “Result” type for functional exception handling
In a previous post I had gone over how a “Try” type can be created in Kotlin from scratch to…
Read More » -
Kotlin: Type conversion with adapters
In this post we will learn how we can use Kotlin extension functions to provide a simple and elegant type…
Read More » -
Deriving a Kotlin “Try” type
Functional programming languages like Scala often have a type called “Try” to hold the result of a computation if successful or…
Read More » -
Kotlin dependency injection with Koin
Dependency injection is a common technique in today’s software design. With dependency injection we pass dependencies to a component instead…
Read More » -
Jackson Kotlin extension and reified types
Jackson Kotlin module library is a pleasure to use. It greatly simplifies gnarly code, specifically one’s involvingTypeReference. Consider a sample…
Read More » -
Top “n” using a Priority Queue
If you ever need to capture the smallest or largest “n” from a stream of data, the approach more often…
Read More » -
Kotlin – Convert List to Map Examples
1. Overview In this tutorial, We’ll learn how to convert the List to Map in Kotlin programming. Let us explore…
Read More »