/**@class android.os.ParcelFileDescriptor.OnCloseListener
 Callback indicating that a ParcelFileDescriptor has been closed.
*/
var OnCloseListener = {

/**Event indicating the ParcelFileDescriptor to which this listener was
 attached has been closed.
@param {Object {IOException}} e error state, or {@code null} if closed cleanly.
        If the close event was the result of
        {@link ParcelFileDescriptor#detachFd()}, this will be a
        {@link FileDescriptorDetachedException}. After detach the
        remote side may continue reading/writing to the underlying
        {@link FileDescriptor}, but they can no longer deliver
        reliable close/error events.
*/
onClose : function(  ) {},


};