to top
Android APIs
public static class

ParcelFileDescriptor.AutoCloseInputStream

extends FileInputStream
java.lang.Object
   ↳ java.io.InputStream
     ↳ java.io.FileInputStream
       ↳ android.os.ParcelFileDescriptor.AutoCloseInputStream
Known Direct Subclasses

Class Overview

An InputStream you can create on a ParcelFileDescriptor, which will take care of calling ParcelFileDescriptor.close() for you when the stream is closed.

Summary

Public Constructors

? Examples
ParcelFileDescriptor.AutoCloseInputStream( ParcelFileDescriptor fd)
Public Methods

? Examples
void close()
Closes this stream.
[Expand]
Inherited Methods
From class java.io.FileInputStream
From class java.io.InputStream
From class java.lang.Object
From interface java.io.Closeable

Public Constructors

public ParcelFileDescriptor.AutoCloseInputStream (ParcelFileDescriptor fd)

Added in API level 1

Public Methods

public void close ()

Added in API level 1

Closes this stream. Concrete implementations of this class should free any resources during close. This implementation does nothing.

Throws
IOException
No examples for this method.
Frequently called with: [Clear]
Portions of this page are reproduced from work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. The original page is available here.