junichi11 commented on PR #4165:
URL: https://github.com/apache/netbeans/pull/4165#issuecomment-1143599935

   @mbien I don't say about it. If we can implement your issue in the Java 
editor, we shouldn't change the editor.
   
   e.g. call the method like the following (`scheduleShowingCompletion()`) in 
the Java editor
   ```java
       private static ScheduledExecutorService service = 
Executors.newSingleThreadScheduledExecutor();
   
       private static void scheduleShowingCompletion() {
           service.schedule(() -> {
               Completion.get().showCompletion();
           }, 750, TimeUnit.MILLISECONDS);
       }
   ````


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to