/executor

Project for Executor Framework implementation in Java

Primary LanguageJava

Executor Framework and ThreadPoolTaskExecutor Implementation using Spring Boot

This repository is implementation of Executor framework and ThreadPoolTaskExecutor with Spring Boot Application with REST APIs to upload and process

Introduction:

ExecutorService is a JDK API that simplifies running tasks in asynchronous mode. Generally speaking, ExecutorService automatically provides a pool of threads and an API for assigning tasks to it.

The Spring ThreadPoolTaskExecutor is a JavaBean that provides an abstraction around a java.util.concurrent.ThreadPoolExecutor instance and exposes it as a Spring org.springframework.core.task.TaskExecutor.