标签: java apache-httpcomponents
我正在阅读HttpCore documentation并遇到了这一行。
public static void consume(HttpEntity entity) throws IOException 确保完全使用实体内容和内容 流(如果存在)已关闭。
public static void consume(HttpEntity entity) throws IOException
确保完全使用实体内容和内容 流(如果存在)已关闭。
“完全消费”一词是什么意思?
答案 0 :(得分:1)
这意味着消息中包含的实体内容已被读取到其逻辑描述符,这可确保下层连接处于一致状态,并可能被重新用于后续消息的传输。