Monday, January 1, 2024

Blocking Methods in Java Concurrency

There are methods in Java that execute the task assigned without relinquishing control to other thread. In that case they have to block the current thread until the condition that fulfills their task is satisfied. Since these methods are blocking in nature so known as blocking methods.

A very relevant example of blocking methods in Java, which most of you would have encountered is read() method of the InputStream class. This method blocks until input data is available, the end of the stream is detected, or an exception is thrown.

Then there is accept() method of the ServerSocket class. This method listens for a connection to be made to this socket and accepts it and blocks until a connection is made.

Since this post is more about blocking methods from the Java multi-threading perspective so let's have some example from there.

Examples of blocking methods in Java multi-threading

  • wait() method- Blocks the current thread until either another thread invokes the notify() method or the notifyAll() method for this object, or a specified amount of time has elapsed.
  • sleep() method- Causes the currently executing thread to sleep (temporarily cease execution) for the specified number of milliseconds.
  • join() method- Where the current thread is blocked until all the other threads finish.
  • BlockingQueue and BlockingDeque interfaces- Starting Java 5 with the introduction of java.util.concurrent package blocking data structures which implements these two interfaces BlockingQueue and BlockingDeque have been added. Some of the examples are ArrayBlockingQueue, LinkedBlockingQueue and LinkedBlockingDeque.

    In these data structures put() and take() method are there-

    • put(E e)- Inserts the specified element into this queue, which will block if the space is full.
    • take()- Retrieves and removes element from the queue, waiting if necessary until an element becomes available.

Drawback of blocking methods

Though it is essential to block threads in order to have some synchronization on the execution order or the access on shared object but at the same time blocking threads may lead to suspension of multiple threads even waiting forever if not handled properly posing a serious threat to scalability and performance.

As example- If a thread holding the lock is waiting for some resource like I/O or delayed due to some other fault then other waiting threads will not make any progress.

Non-Blocking Data Structures

Java 5 has added many data structures in concurrency package that use non-blocking algorithm like atomic variables i.e. AtomicInteger, ConcurrentLinkedQueue or reduce the probability of blocking by using techniques like lock striping as used in ConcurrentHashMap.

Non-blocking I/O

Java NIO's non-blocking mode in which an I/O operation will never block and may transfer fewer bytes than were requested or possibly no bytes at all from the Channel.

That's all for this topic Blocking Methods in Java Concurrency. If you have any doubt or any suggestions to make please drop a comment. Thanks!


Related Topics

  1. Non-Blocking Algorithms in Java
  2. Lock Striping in Java Concurrency
  3. BlockingQueue in Java Concurrency
  4. PriorityBlockingQueue in Java Concurrency
  5. BlockingDeque in Java Concurrency

You may also like-

  1. Deadlock in Java Multi-Threading
  2. Callable and Future in Java With Examples
  3. Producer-Consumer Java program using ArrayBlockingQueue
  4. Interface Default Methods in Java
  5. Difference Between throw And throws in Java
  6. Difference Between Checked And Unchecked Exceptions in Java
  7. Heap Memory Allocation in Java
  8. registerShutdownHook() Method in Spring Framework