- java.lang.Object
-
- java.net.CacheRequest
-
public abstract class CacheRequest extends Object
Represents channels for storing resources in the ResponseCache. Instances of such a class provide an OutputStream object which is called by protocol handlers to store the resource data into the cache, and also an abort() method which allows a cache store operation to be interrupted and abandoned. If an IOException is encountered while reading the response or writing to the cache, the current cache store operation will be aborted.- Since:
- 1.5
-
-
Constructor Summary
Constructors Constructor and Description CacheRequest()
-
Method Summary
Methods Modifier and Type Method and Description abstract void
abort()
Aborts the attempt to cache the response.abstract OutputStream
getBody()
Returns an OutputStream to which the response body can be written.
-
-
-
Method Detail
-
getBody
public abstract OutputStream getBody() throws IOException
Returns an OutputStream to which the response body can be written.- Returns:
- an OutputStream to which the response body can be written
- Throws:
IOException
- if an I/O error occurs while writing the response body
-
abort
public abstract void abort()
Aborts the attempt to cache the response. If an IOException is encountered while reading the response or writing to the cache, the current cache store operation will be abandoned.
-
-
Document created the 11/06/2005, last modified the 04/03/2020
Source of the printed document:https://www.gaudry.be/en/java-api-rf-java/net/CacheRequest.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.