Interface DataBufferController
-
- All Known Implementing Classes:
DataBufferControllerImpl
@RequestMapping(path="/api") public interface DataBufferControllerThe data buffer controller.- Author:
- Christian Bremer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description reactor.core.publisher.Mono<String>postData(reactor.core.publisher.Flux<org.springframework.core.io.buffer.DataBuffer> data)Post data mono.
-
-
-
Method Detail
-
postData
@PostMapping(path="/data", consumes="*/*") reactor.core.publisher.Mono<String> postData(@RequestBody reactor.core.publisher.Flux<org.springframework.core.io.buffer.DataBuffer> data)Post data mono.- Parameters:
data- the data- Returns:
- the mono
-
-