This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
tutorials:commands:suggestions [2020/06/14 04:37] i509vcb Created Suggestions sub page for commands |
tutorials:commands:suggestions [2020/11/25 08:15] (current) i509vcb Link to CompleteableFuture in JDK javadoc |
||
---|---|---|---|
Line 1: | Line 1: | ||
+ | Licensing: The code in this article is licensed under the “Creative Commons Zero v1.0 Universal” license. The license grants you the rights to use the code examples shown in this article in your own mods. | ||
+ | |||
====== Command Suggestions ====== | ====== Command Suggestions ====== | ||
Line 5: | Line 7: | ||
===== Suggestion Providers ===== | ===== Suggestion Providers ===== | ||
- | A ''SuggestionProvider'' is used to make a list of suggestions that will be sent to the client. A suggestion provider is a functional interface that takes a ''CommandContext'' and a ''SuggestionBuilder'' and returns some ''Suggestions''. The ''SuggestionProvider'' returns a ''CompletableFuture'' as the suggestions may not be available immediately. | + | A ''SuggestionProvider'' is used to make a list of suggestions that will be sent to the client. A suggestion provider is a functional interface that takes a ''CommandContext'' and a ''SuggestionBuilder'' and returns some ''Suggestions''. The ''SuggestionProvider'' returns a [[https://docs.oracle.com/en/java/javase/15/docs/api/java.base/java/util/concurrent/CompletableFuture.html|CompletableFuture]] as the suggestions may not be available immediately. |