Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Concurrency-related refactorings for JDT"

(moved legend to a box)
Line 13: Line 13:
  
 
==Primary goals==
 
==Primary goals==
 +
<div style="clear: right; border: solid #aaa 1px; margin: 0 0 1em 1em; font-size: 90%; background: #f9f9f9; width: 250px; padding: 4px; text-align: left; float: right;">
 +
'''Legend'''
  
== Community Proposals ==
+
[[Image:Glass.gif]] Needs some investigation/research
 
+
=== Extract to FutureTask ===
+
A quickfix could allow to extract selected source into a java.util.concurrent.FutureTask (and its embedded Callable). Additionally a java.util.concurrent.Execture should be provided in some form to run the task.
+
 
+
==Legend==
+
[[Image:Glass.gif]] Needs some investigation
+
  
 
[[Image:Progress.gif]] Work in progress
 
[[Image:Progress.gif]] Work in progress
  
 
[[Image:Ok_green.gif]] Bug fixed / Feature added
 
[[Image:Ok_green.gif]] Bug fixed / Feature added
 +
</div>
 +
 +
== Community Proposals ==
 +
 +
=== Extract to FutureTask ===
 +
A quickfix could allow to extract selected source into a java.util.concurrent.FutureTask (and its embedded Callable). Additionally a java.util.concurrent.Execture should be provided in some form to run the task.
  
  
  
 
[[Category:SOC]]
 
[[Category:SOC]]

Revision as of 07:09, 5 May 2008

Project Lead: Benjamin Muskalla (IRC: benny`work)

Mentor: Ahti Kitsik (IRC: ahtik)

This project is part of the Google Summer of Code 2008

Abstract

Prices of multi-core cpus are dropping and the move of multi-core processors to desktop machines doesn't stand still. There is a growing need of software developers to handle with concurrency-related problems in their application in order to improve the scalability. Today Moore's law is not applicable in the original sense as parallel computing increases. This idea growed up out of these reasons. Todays developers are all aware of the complexity of concurrent development but cannot handle this complexity very well. In many cases it's not possible to detect such problems with static or dynamic code analysis which implies that developers need to take care of it. The main idea of this project is not to solve concurrency problems but to help the developer to concentrate on the real hard things and eliminate the machine-solvable problems.

The whole proposal can be found here (pdf).

Primary goals

Legend

Glass.gif Needs some investigation/research

Progress.gif Work in progress

Ok green.gif Bug fixed / Feature added

Community Proposals

Extract to FutureTask

A quickfix could allow to extract selected source into a java.util.concurrent.FutureTask (and its embedded Callable). Additionally a java.util.concurrent.Execture should be provided in some form to run the task.

Back to the top