takeFirst() method of BlockingDeque Interface in Java.

takeFirst() method of BlockingDeque Interface in Java.


Posted in : Core Java Posted on : March 4, 2011 at 6:46 PM Comments : [ 0 ]

In this section we will discuss how can takeFirst() method be implemented in BlockingDeque interface in java. to find and delete this method waits (if required) until the element becomes available.

takeFirst() method of BlockingDeque Interface in Java.

In this section we will discuss how can takeFirst() method be implemented in BlockingDeque interface in java.

Syntax

E takeFirst() 

This method finds and deletes the first position element from the underlying deque, to find and delete this method waits (if required) until the element becomes available.

Parameter Description

This method has no parameter.

Example of takeFirst() method

In this example we will show you how does takeFirst() method work in BlockingDeque interface. This example will help you to understand how can you retrieve and remove the first position element from the underlying deque.

Example :

package devmanuals.com;
import java.util.concurrent.BlockingDeque;
import java.util.concurrent.LinkedBlockingDeque;
class TakeFirst implements Runnable {
  BlockingDeque bdq;
  String name;
  public TakeFirst(String name, BlockingDeque bdq) {
    this.bdq = bdq;
    this.name = name;
  }
  public void run() {
    int i;
    System.out.println(name + " inserted the element into the deque");
    for (i = 0; i < 5; i++) {
      bdq.add(i);
      System.out.println(i);
      try {
        Thread.sleep(400);
      } catch (InterruptedException e) {
        e.printStackTrace();
      }
     }
  }
}
class TakeFirst1 implements Runnable {
  String name;
  BlockingDeque bdq;
  public TakeFirst1(String name, BlockingDeque bdq) {
    this.bdq = bdq;
    this.name = name;
    new Thread().start();
  }
  public void run() {
    try {
      //Implementation of the method
      int j = bdq.takeFirst();
      Thread.sleep(1500);
      System.out.println(name
          + " deleted the first element then remaining deque = "
          + bdq);
      System.out.println("The deleted element is = "+j);
      System.out.println("Size of remaining deque = "+bdq.size());
    } catch (InterruptedException e) {
      e.printStackTrace();
    }
  }
}
public class BdqTakeFirst {
  public static void main(String args[]) {
    BlockingDeque bdq = new LinkedBlockingDeque(5);
    Runnable a = new TakeFirst("A", bdq);
    new Thread(a).start();
    try {
      Thread.sleep(400);
    } catch (InterruptedException e) {
      e.printStackTrace();
    }
    Runnable b = new TakeFirst1("B", bdq);
    new Thread(b).start();
  }
}

Output :

A inserted the element into the deque

0

1

2

3

4

B deleted the first element then remaining deque = [1, 2, 3, 4]

The deleted element is = 0

Size of remaining deque = 4

Download Source Code

Go to Topic «PreviousHomeNext»

Your Comment:


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

 
Tutorial Topics