Rossen Stoyanchev
11 years ago
23 changed files with 58 additions and 37 deletions
@ -1,5 +1,4 @@ |
|||||||
/** |
/** |
||||||
* Annotations and for handling messages from simple messaging protocols |
* Annotations and for handling messages from SImple Messaging Protocols such as STOMP. |
||||||
* (like STOMP). |
|
||||||
*/ |
*/ |
||||||
package org.springframework.messaging.simp.annotation; |
package org.springframework.messaging.simp.annotation; |
||||||
|
@ -1,4 +1,4 @@ |
|||||||
/** |
/** |
||||||
* Generic support for SImple Messaging Protocols such as STOMP. |
* Generic support for SImple Messaging Protocols including protocols such as STOMP. |
||||||
*/ |
*/ |
||||||
package org.springframework.messaging.simp; |
package org.springframework.messaging.simp; |
||||||
|
@ -1,4 +1,4 @@ |
|||||||
package org.springframework.messaging.simp.handler; |
package org.springframework.messaging.simp.user; |
||||||
|
|
||||||
import java.util.Set; |
import java.util.Set; |
||||||
|
|
@ -0,0 +1,9 @@ |
|||||||
|
/** |
||||||
|
* Support for handling messages to "user" destinations (i.e. destinations that are |
||||||
|
* unique to a user's sessions), primarily translating the destinations and then |
||||||
|
* forwarding the updated message to the broker. |
||||||
|
* <p> |
||||||
|
* Also included is {@link org.springframework.messaging.simp.user.UserSessionRegistry} |
||||||
|
* for keeping track of connected user sessions. |
||||||
|
*/ |
||||||
|
package org.springframework.messaging.simp.user; |
Loading…
Reference in new issue