일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- token filter test
- ELASTIC
- springboot
- sort
- Python
- plugin
- flask
- 파이썬
- aggs
- analyzer test
- zip 파일 암호화
- Elasticsearch
- Mac
- Test
- license delete
- docker
- licence delete curl
- zip 암호화
- License
- Kafka
- API
- 차트
- 900gle
- query
- high level client
- TensorFlow
- aggregation
- matplotlib
- Java
- MySQL
Archives
- Today
- Total
개발잡부
[java] CompletableFuture에서 get()과 join() 본문
반응형
Java의 CompletableFuture에서 get()과 join() 메소드는 모두 완료된 CompletableFuture의 결과를 반환
get() | join() | |
interrupt | O | X |
interrupt 발생 | InterruptedException | 인터럽트 차단 |
Exception | ExecutionException | UncheckedExecutionException |
get() 메소드는 java.util.concurrent.Future 인터페이스에 정의되어 있으므로 이 인터페이스를 구현하는 다른 클래스와 호환 가능하지만, join() 메소드는 CompletableFuture 클래스에만 특화되어 있기 때문에 CompletableFuture와만 사용할 수 있다
일반적으로 CompletableFuture을 다룰 때는 join() 메소드를 사용하는 것이 좋음
반응형
'JAVA > java' 카테고리의 다른 글
[java] Vavr 란? (1) | 2024.09.02 |
---|---|
[AOP] Aspect Oriented Programming (0) | 2023.07.22 |
[java] JAVA Stream 요소삭제 (remove) (0) | 2023.06.08 |
[java ]StringTokenizer (0) | 2023.05.10 |
[java] 쓰레드 세이프(Thread Safe) (0) | 2023.05.04 |
Comments