如果无法访问 Http 服务器,并且 Http 客户端正在尝试向服务器发送 POST 请求,那么 Post 内容是否有机会被发送(比如返回错误代码并且代码不会被执行)?
更具体地说,我在 writeTo 函数中有特殊的逻辑,如果 Http 服务器不可达,我想知道它是否被执行。
public interface HttpEntity {
boolean isRepeatable();
boolean isChunked();
long getContentLength();
Header getContentType();
Header getContentEncoding();
InputStream getContent() throws IOException, IllegalStateException;
void writeTo(OutputStream var1) throws IOException;
boolean isStreaming();
void consumeContent() throws IOException;
}