Package io.fluxcapacitor.javaclient.web
Annotation Interface HandleWebResponse
@Documented
@Retention(RUNTIME)
@Target(METHOD)
@HandleMessage(WEBRESPONSE)
public @interface HandleWebResponse
Marks a method as a handler for
MessageType.WEBRESPONSE
messages.
This is typically used to inspect response messages emitted by Flux applications that originally handled
MessageType.WEBREQUEST
messages.
- See Also:
-
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionboolean
Iftrue
, disables this handler during discovery.
-
Element Details
-
disabled
boolean disabledIftrue
, disables this handler during discovery.- Default:
false
-