Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4910311

Concurrency: remove() of ScheduledExecutor throws ClassCastException

XMLWordPrintable

      Bug in remove(Runnable) method of ScheduledExecutor class.
      When I try to invoke remove() nethod by passing the Runnable object, it
      throws ClassCastException. This bug is reproducible on JSR166 Preliminary Test Relase 2. Please find the sample test program which try to
      produce the bug (See test01()) or following sample code.

      Sample code for reproducing bug.

      /* sample code */
      ScheduledExecutor executor = new ScheduledExecutor(10);

      MyThread[] myJobArray = new MyThread[10];

      for(int i = 0; i < myJobArray.length; i++){
          myJobArray[i] = new MyThread();
          executor.execute(myJobArray[i]);
      }

      //Bug in remove() method. Try to remove the one Runnable object.
      //Ideally remove method should return true. But it throws ClassCastException.
      System.out.println(executor.remove((Runnable)myJobArray[9]));
      /* end of sample code */
          
      This is a backlog bug and added to bugtraq just for tracking purpose.
      It has been fixed.
          
          

            jjb Josh Bloch
            duke J. Duke
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: