Future[_] vs Future[Unit] or which return type should I choose?
Recently I have a heated debate with my colleague about a proper return type for async procedures (procedure is just a function that returns Unit in... »
Recently I have a heated debate with my colleague about a proper return type for async procedures (procedure is just a function that returns Unit in... »
In microservices architecture we often designate a single service for managing the configuration of the entire system. Libraries like Archaius make this easy. As a side... »
Recently I have completed my own version of Ben Eater video card. I still need to spend some time on it, since I could not achieve... »
Recently I write a lot of async code. Most of my repository methods return types like Future[Set[T]] or Future[Option[T]]. But as we will see, working with... »
So here is a puzzle. What will be written by this program: object Wtf1 { def main(args: Array[String]): Unit = { val points: List[Point] = List(... »