Package org.apache.sshd.server.command
Interface CommandDirectInputStreamAware
-
- All Known Subinterfaces:
AsyncCommand,Command,CommandDirectStreamsAware
- All Known Implementing Classes:
AbstractCommandSupport,AbstractFileSystemCommand,InvertedShellWrapper,UnknownCommand
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface CommandDirectInputStreamAware
- Author:
- Apache MINA SSHD Project
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetInputStream(InputStream in)Set the input stream that can be used by the shell to read input.
-
-
-
Method Detail
-
setInputStream
void setInputStream(InputStream in)
Set the input stream that can be used by the shell to read input.- Parameters:
in- TheInputStreamused by the shell to read input.
-
-