Author Archives: Madhura Oak
Best Practices in Requirements Management
A project iteration starts with Requirements Analysis phase. In this phase, the requirements are gathered from various stakeholders of the project. A requirement defines the work that needs to be carried out in a project. Though most of the requirements … Read More
The Executor Framework – Part V
So far in the Executor Framework blog post series, I have covered the following topics:
- Creating a single worker thread for sequential execution of tasks
- Creating a thread pool of fixed number of threads
- Creating asynchronous task
- Creating cancellable
Runnable
The Executor Framework – Part IV
In the Part III of Executor Framework blog post series, I had written about Callable interface, creating Callable task and assigning a timeout to ExecutorService after shutdown.
In this blog post, I am writing about use of ExecutorService to submit … Read More
The Executor Framework – Part III
In the Part II of Executor Framework blog post series, I had written about creating cancellable Runnable task and creating Runnable task with a timeout with the help of this framework. I had also written about two submit methods of … Read More
The Executor Framework – Part II
In the Part I of Executor Framework blog post series, I had written how it can be used to create a single worker thread for sequential execution of tasks and create a thread pool of fixed number of threads. In … Read More
