Package org.apache.sshd.common.scp
Interface ScpReceiveLineHandler
-
- 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 ScpReceiveLineHandler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
process(Session session, java.lang.String line, boolean isDir, ScpTimestamp time)
-
-
-
Method Detail
-
process
void process(Session session, java.lang.String line, boolean isDir, ScpTimestamp time) throws java.io.IOException
- Parameters:
session
- The client/serverSession
through which the transfer is being executedline
- Received SCP input lineisDir
- Does the input line refer to a directorytime
- The receivedScpTimestamp
- may benull
- Throws:
java.io.IOException
- If failed to process the line
-
-