use of com.safframework.study.task.web.dto.ApiResponseDTO in project RxJavaInAction by fengzhizi715.
the class TasksController method concurrent.
@GetMapping("/concurrent")
public ApiResponseDTO concurrent(@RequestParam("task") int[] taskDelaysInSeconds, @RequestParam("threads") int numberOfConcurrentThreads) {
StopWatch watch = new StopWatch();
watch.start();
List<ITask> delayedTasks = IntStream.of(taskDelaysInSeconds).mapToObj(MockTask::new).collect(Collectors.toList());
new ConcurrentTasksExecutor(numberOfConcurrentThreads, delayedTasks).execute();
watch.stop();
return new ApiResponseDTO(watch.getTotalTimeSeconds());
}
use of com.safframework.study.task.web.dto.ApiResponseDTO in project RxJavaInAction by fengzhizi715.
the class TasksController method sequential.
@GetMapping("/sequential")
public ApiResponseDTO sequential(@RequestParam("task") int[] taskDelaysInSeconds) {
StopWatch watch = new StopWatch();
watch.start();
IntStream.of(taskDelaysInSeconds).mapToObj(MockTask::new).forEach(MockTask::execute);
watch.stop();
return new ApiResponseDTO(watch.getTotalTimeSeconds());
}
Aggregations