Annotation Type Subscribe
-
@Retention(RUNTIME) @Target(METHOD) public @interface Subscribe
Annotation for subscribing an EventQueue with the annotated method.SelectorComposer
.- Since:
- 6.0.1
- Author:
- simonpai
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description java.lang.String
value
Name of the EventQueue.
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description boolean
autoUnsubscribe
Unsubscribe event-queue automatically when component of composer was detached.java.lang.String
eventName
Event namejava.lang.String
scope
Scope of the EventQueue.
-
-
-
-
scope
java.lang.String scope
Scope of the EventQueue. Available values areEventQueues.DESKTOP
,EventQueues.GROUP
,EventQueues.SESSION
, andEventQueues.APPLICATION
. Note:EventQueues.GROUP
requires ZK EE.- Default:
- "desktop"
-
-