Skip to content

Instantly share code, notes, and snippets.

@takahashi-h5
Created August 12, 2020 06:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save takahashi-h5/ab64108dce09bb3705db8e9393d0ed4c to your computer and use it in GitHub Desktop.
Save takahashi-h5/ab64108dce09bb3705db8e9393d0ed4c to your computer and use it in GitHub Desktop.
package jp.co.confrage.presentation.controller;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.ExecutionException;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import jp.co.confrage.presentation.service.DemoService;
import lombok.RequiredArgsConstructor;
@RestController
@RequiredArgsConstructor
public class DemoController {
private final DemoService demoService;
/**
* 指定秒数かかるAPI
*
* @param seconds1
* @param seconds2
* @param seconds3
* @return
* @throws InterruptedException
* @throws ExecutionException
*/
@RequestMapping(path = "/sleep/{seconds1}/{seconds2}/{seconds3}", method = RequestMethod.GET)
public ResponseEntity<String> sleep(
@PathVariable String seconds1, @PathVariable String seconds2, @PathVariable String seconds3)
throws InterruptedException, ExecutionException {
long startTime = System.currentTimeMillis();
CompletableFuture<String> page1 = demoService.async(seconds1);
CompletableFuture<String> page2 = demoService.async(seconds2);
CompletableFuture<String> page3 = demoService.async(seconds3);
CompletableFuture.allOf(page1, page2, page3).join(); // 終了まで待機する
System.out.println("--> " + page1.get());
System.out.println("--> " + page2.get());
System.out.println("--> " + page3.get());
long endTime = System.currentTimeMillis();
System.out.println("処理時間:" + (endTime - startTime) + " ms");
return ResponseEntity.ok("test");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment