Uses of Class
net.schmizz.sshj.sftp.Response
-
Packages that use Response Package Description net.schmizz.sshj.sftp -
-
Uses of Response in net.schmizz.sshj.sftp
Fields in net.schmizz.sshj.sftp with type parameters of type Response Modifier and Type Field Description private SFTPPacket<Response>
PacketReader. packet
private Promise<Response,SFTPException>
RemoteFile.ReadAheadRemoteFileInputStream.UnconfirmedRead. promise
private java.util.Map<java.lang.Long,Promise<Response,SFTPException>>
PacketReader. promises
private java.util.Queue<Promise<Response,SFTPException>>
RemoteFile.RemoteFileOutputStream. unconfirmedWrites
Methods in net.schmizz.sshj.sftp that return Response Modifier and Type Method Description private Response
SFTPEngine. doRequest(Request req)
Response
Response. ensurePacketTypeIs(PacketType pt)
Response
Response. ensureStatusIs(Response.StatusCode acceptable)
Response
Response. ensureStatusPacketIsOK()
Methods in net.schmizz.sshj.sftp that return types with arguments of type Response Modifier and Type Method Description protected Promise<Response,SFTPException>
RemoteFile. asyncRead(long fileOffset, int len)
protected Promise<Response,SFTPException>
RemoteFile. asyncWrite(long fileOffset, byte[] data, int off, int len)
Promise<Response,SFTPException>
PacketReader. expectResponseTo(long requestId)
Promise<Response,SFTPException>
RemoteFile.ReadAheadRemoteFileInputStream.UnconfirmedRead. getPromise()
SFTPPacket<Response>
PacketReader. readPacket()
Promise<Response,SFTPException>
Requester. request(Request req)
Promise<Response,SFTPException>
SFTPEngine. request(Request req)
Methods in net.schmizz.sshj.sftp with parameters of type Response Modifier and Type Method Description protected int
RemoteFile. checkReadResponse(Response res, byte[] to, int offset)
protected static java.lang.String
SFTPEngine. readSingleName(Response res)
Using UTF-8protected static java.lang.String
SFTPEngine. readSingleName(Response res, java.nio.charset.Charset charset)
Using any character setprivate static byte[]
SFTPEngine. readSingleNameAsBytes(Response res)
Method parameters in net.schmizz.sshj.sftp with type arguments of type Response Modifier and Type Method Description private void
RemoteFile. checkWriteResponse(Promise<Response,SFTPException> responsePromise)
Constructor parameters in net.schmizz.sshj.sftp with type arguments of type Response Constructor Description Response(Buffer<Response> pk, int protocolVersion)
UnconfirmedRead(long offset, int length, Promise<Response,SFTPException> promise)
-