Module handlerannotations
Annotation Type NeovimNotificationHandler
-
@Inherited @Retention(RUNTIME) @Target(METHOD) public @interface NeovimNotificationHandlerAnnotation used to mark a method as a notification handler That means that this method will be called when notification with name matching value of this annotation arrivesTo actually use this, object with this method needs to be registered in
NeovimHandlerManagerCurrently, only single argument methods are supported and that argument must be of
NotificationMessagetype
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description java.lang.StringvalueName of notification this method will handle
-