-
[WebFlux] Learn how to create Mono instances 해답 코드 - techio웹 개발/WebFlux 2019. 10. 22. 23:24
techio에서 배울 수 있는 Reactor 학습의 success 코드
operator 참고 사이트
해답 코드
Empty Mono
// TODO Return an empty Mono Mono<String> emptyMono() { return Mono.empty(); }
No Emission
// TODO Return a Mono that never emits any signal Mono<String> monoWithNoSignal() { return Mono.never(); }
Create a Mono from an item
// TODO Return a Mono that contains a "foo" value Mono<String> fooMono() { return Mono.just("foo"); }
Create a Mono that emits an IllegalStateException
// TODO Create a Mono that emits an IllegalStateException Mono<String> errorMono() { return Mono.error(new IllegalStateException()); }
'웹 개발 > WebFlux' 카테고리의 다른 글
[WebClient] Content type 'application/octet-stream' not supported for bodyType='' 에러 (0) 2023.03.15 [WebFlux] publisher(발행) - subscriber(구독) 패턴에 대해서 (0) 2020.01.24 [WebFlux] query string에 담긴 String 파라미터를 localDate로 캐스팅하고 매핑하기 (0) 2019.12.23 [WebFlux] StepVerifier and How to use it 해답 코드 - techio (0) 2019.10.29 [WebFlux] Learn how to create Flux instances 해답 코드 - techio (0) 2019.10.21