Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save vikasontech/2ede68be98e439714381437b77f3f218 to your computer and use it in GitHub Desktop.
Save vikasontech/2ede68be98e439714381437b77f3f218 to your computer and use it in GitHub Desktop.
SomeController.kt
@RestController
class SomeController {
@Autowired
private lateinit var someService: SomeService
@GetMapping("/process", produces = [MediaType.TEXT_EVENT_STREAM_VALUE])
fun somRequest(@RequestParam id: Int): Mono<String> {
return someService.process(id)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment