Skip to content

Instantly share code, notes, and snippets.

@mihkels
Created November 7, 2019 03:40
Show Gist options
  • Save mihkels/2f45b959ff1ca94a26f790cb3fc7e7a4 to your computer and use it in GitHub Desktop.
Save mihkels/2f45b959ff1ca94a26f790cb3fc7e7a4 to your computer and use it in GitHub Desktop.
RSocket Spring Boot message producer
@Controller
public class GreetingProducerController {
@MessageMapping("greet")
Mono<GreetingResponse> greet(GreetingRequest request) {
return Mono.just(new GreetingResponse("Hello " + request.getName() + " @ " + Instant.now()));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment