VOOZH about

URL: https://www.javacodegeeks.com/tag/concurrency/page/8

⇱ Concurrency Archives - Page 8 of 20 - Java Code Geeks


  • Core Java👁 Image
    Tomasz NurkiewiczDecember 30th, 2014
    0 213

    Asynchronous timeouts with CompletableFuture

    One day I was rewriting poorly implemented multi-threaded code that was blocking at some point on Future.get():      …

    Read More »
  • Core Java👁 Image
    Eyal GolanDecember 17th, 2014
    6 122

    Playing With Java Concurrency

    Recently I needed to transform some filet that each has a list (array) of objects in JSON format to files…

    Read More »
  • Core Java👁 Image
    Attila Mihaly BalazsDecember 17th, 2014
    3 269

    Thread local storage in Java

    One of the rarely known features among developers is Thread-local storage.  The idea is simple and need for it comes…

    Read More »
  • Core Java👁 Image
    Tomasz NurkiewiczDecember 1st, 2014
    0 213

    Converting between Completablefuture and Observable

    CompletableFuture<T> from Java 8 is an advanced abstraction over a promise that value of type T will be available in…

    Read More »
  • Core Java👁 Image
    Tomasz NurkiewiczNovember 24th, 2014
    1 249

    ExecutorService – 10 tips and tricks

    ExecutorService abstraction has been around since Java 5. We are talking about 2004 here. Just a quick reminder: both Java…

    Read More »
  • Core Java👁 Image
    Martin MoisNovember 17th, 2014
    9 2,786

    100 Multithreading and Java Concurrency Interview Questions and Answers – The ULTIMATE List (PDF Download)

    In this post, we feature a comprehensive article on Multithreading and Java Concurrency Interview Questions and Answers. EDITORIAL NOTE: Concurrency…

    Read More »
  • Core Java👁 Image
    Alex ZhitnitskyNovember 6th, 2014
    0 117

    Beyond Thread Pools: Java Concurrency is Not as Bad as You Think

    Apache Hadoop, Apache Spark, Akka, Java 8 streams and Quasar: The classic use cases to the newest concurrency approaches for Java…

    Read More »
  • Core Java👁 Image
    Daryl MathisonOctober 27th, 2014
    2 176

    How to Use Callable and FutureTask

    Introduction Since Java 1.5 there has been a new set of objects under java.util.concurrent.  This package has a number of…

    Read More »
  • Core Java👁 Image
    Xavier PadroSeptember 4th, 2014
    0 466

    Java Concurrency Tutorial – Locking: Intrinsic locks

    In previous posts we reviewed some of the main risks of sharing data between different threads (like atomicity and visibility)…

    Read More »
  • First
  • ...
  • «
  • 6
  • 7
  • 8
  • 9
  • 10
  • »
  • ...
  • Last
Back to top button
Close