Uses of Class
org.aesh.readline.history.History
Packages that use History
-
Uses of History in org.aesh.readline
Methods in org.aesh.readline that return HistoryModifier and TypeMethodDescriptionAeshConsoleBuffer.history()ConsoleBuffer.history()Get the command history manager.Methods in org.aesh.readline with parameters of type HistoryModifier and TypeMethodDescriptionSets the history implementation for the Readline instance.voidReadline.readline(Connection conn, Prompt prompt, Consumer<String> requestHandler, List<Completion> completions, List<Function<String, Optional<String>>> preProcessors, History history) Reads a line of input from the connection with completions, pre-processors, and custom history.voidReadline.readline(Connection conn, Prompt prompt, Consumer<String> requestHandler, List<Completion> completions, List<Function<String, Optional<String>>> preProcessors, History history, CursorListener listener) Reads a line of input from the connection with completions, pre-processors, custom history, and cursor listener.voidReadline.readline(Connection conn, Prompt prompt, Consumer<String> requestHandler, List<Completion> completions, List<Function<String, Optional<String>>> preProcessors, History history, CursorListener listener, EnumMap<ReadlineFlag, Integer> flags) Reads a line of input from the connection with all configuration options.Constructors in org.aesh.readline with parameters of type HistoryModifierConstructorDescriptionAeshConsoleBuffer(Connection connection, Prompt prompt, EditMode editMode, History history, CompletionHandler completionHandler, boolean ansi, CursorListener listener) Creates a new AeshConsoleBuffer.Readline(EditMode editMode, History history, CompletionHandler completionHandler) Creates a new Readline instance with the specified edit mode, history, and completion handler. -
Uses of History in org.aesh.readline.history
Subclasses of History in org.aesh.readline.historyModifier and TypeClassDescriptionclassRead the history file at init and writeToStdOut to it at shutdownclassA simple in-memory history implementation By default max size is 500