Package org.springframework.shell.jline
Class InteractiveShellRunner
java.lang.Object
org.springframework.shell.jline.InteractiveShellRunner
- All Implemented Interfaces:
ShellRunner
A
ShellRunner
that bootstraps the shell in interactive mode.
Has lower precedence than ScriptShellRunner
and NonInteractiveShellRunner
which makes it the
default shell runner when the other runners opt-out of handling the shell.
-
Nested Class Summary
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
The precedence at which this runner is ordered by the DefaultApplicationRunner - which also controls the order it is consulted on the ability to handle the current shell. -
Constructor Summary
ConstructorDescriptionInteractiveShellRunner
(org.jline.reader.LineReader lineReader, PromptProvider promptProvider, Shell shell, ShellContext shellContext) -
Method Summary
-
Field Details
-
PRECEDENCE
public static final int PRECEDENCEThe precedence at which this runner is ordered by the DefaultApplicationRunner - which also controls the order it is consulted on the ability to handle the current shell.- See Also:
-
-
Constructor Details
-
InteractiveShellRunner
public InteractiveShellRunner(org.jline.reader.LineReader lineReader, PromptProvider promptProvider, Shell shell, ShellContext shellContext)
-
-
Method Details
-
run
Description copied from interface:ShellRunner
Execute application.- Specified by:
run
in interfaceShellRunner
- Parameters:
args
- the application argumets- Throws:
Exception
- in errors
-
canRun
public boolean canRun(org.springframework.boot.ApplicationArguments args) Description copied from interface:ShellRunner
Checks if a particular shell runner can execute.- Specified by:
canRun
in interfaceShellRunner
- Parameters:
args
- the application arguments- Returns:
- true if shell runner can execute
-