Package de.uhilger.httpserver.up
Interface Closeable
-
- All Known Implementing Classes:
MultipartStream.ItemInputStream
public interface CloseableDer Lowlevel MultipartParser aus dem Projekt Apache Commons Fileupload ohne Abhaengigkeiten zum Rest von Commons Fileupload und Commons IO. Interface of an object, which may be closed.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()Closes the object.booleanisClosed()Returns, whether the object is already closed.
-
-
-
Method Detail
-
close
void close() throws IOExceptionCloses the object.- Throws:
IOException- An I/O error occurred.
-
isClosed
boolean isClosed() throws IOExceptionReturns, whether the object is already closed.- Returns:
- True, if the object is closed, otherwise false.
- Throws:
IOException- An I/O error occurred.
-
-