Package org.cometd.annotation
Annotation Type Listener
@Target(METHOD) @Retention(RUNTIME) @Documented public @interface Listener
For server-side services, identifies callback methods that are invoked when a message is processed on server-side.
For client-side services, identifies callback methods that are invoked
with the same semantic of ClientSessionChannel.MessageListener
.
- See Also:
Subscription
-
Required Element Summary
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description boolean
receiveOwnPublishes
-
Element Details
-
-
receiveOwnPublishes
boolean receiveOwnPublishes- Returns:
- whether the callback method should receive messages that has itself published on channels that would trigger the invocation of callback method
- Default:
- false
-