Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 친절한 SQL 튜닝
- HandlerMethodArgumentResolver
- 백명석님
- CompletableFuture
- intellij 핵심 단축키
- @TransactionalEventListener
- Stream
- #docker compose
- ksqldb
- @Transactional Propagation
- Linux
- ksql
- 자바 ORM 표준 JPA 프로그래밍
- aws
- git
- 마이크로 서비스
- 자바 ORM 표준 JPA 프로그래밍 정리
- 리팩토링 2판
- JPA
- 리눅스
- vue.js
- javascript case
- java
- intellij 즐겨찾기
- multipart테스트
- intellij favorites
- IntelliJ
- findTopBy
- Spring Cloud Netflix
- 원격 브랜 삭제
Archives
- Today
- Total
목록CompletableFuture (1)
시그마 삽질==six 시그마
CompletableFuture
/* supplyAsync() 반환값 있는 비동기 작업, runAsync() : 반환값 없는 비동기 작업 get(): 블로킹 get join(): 블로킹 get+ 예외발생시 throw exception thenApply() 리턴 있는 동기 콜백, thenApplyAsync() 리턴 있는 비동기 콜백 thenAccept() 리턴 없는 동기 콜백, thenAcceptAsync()리턴 없는 비동기 콜백 thenCompose() : 여러개의 작업들을 순차 실행 thenCombine() : 여러개의 작업들을 병렬 실행 anyOf() :작업들중 가장 빠른거 1개 결과 가져옴 allOf(): 작업들(3개이상도 가능) 병렬실행하고 결과 조합 */ ExecutorService executor = Executors.new..
프로그래밍/Java
2020. 10. 31. 01:41