Guest User

Untitled

a guest
Jun 23rd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. @MessageMapping("/getNotifications")
  2. @SendTo("/topic/notifications")
  3. public @ResponseBody List<NotificationResponse> getNotificationsWS(int size,
  4. SimpMessageHeaderAccessor headerAccessor, Principal principal) throws Exception {
  5. ActionResult<List<NotificationResponse>> notificationsAr;
  6. notificationsAr = this.listNotifications(size, principal);
  7. return notificationsAr.getResult();
  8.  
  9. }
Add Comment
Please, Sign In to add comment