blob: 9e4d9f3268123e9936522accbb727313b9fe4ccd [file] [log] [blame]
Steve McKayf68210e2015-11-03 15:23:16 -08001/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.documentsui;
18
Steve McKayf68210e2015-11-03 15:23:16 -080019import android.content.ContentProviderClient;
20import android.database.Cursor;
21
Steve McKayd0805062016-09-15 14:30:38 -070022import com.android.documentsui.base.DocumentInfo;
Tomasz Mikolajewskie29e3412016-02-24 12:53:44 +090023
Steve McKayf68210e2015-11-03 15:23:16 -080024import libcore.io.IoUtils;
25
26public class DirectoryResult implements AutoCloseable {
27 ContentProviderClient client;
28 public Cursor cursor;
29 public Exception exception;
Tomasz Mikolajewskie29e3412016-02-24 12:53:44 +090030 public DocumentInfo doc;
Steve McKayf68210e2015-11-03 15:23:16 -080031
32 @Override
33 public void close() {
34 IoUtils.closeQuietly(cursor);
35 ContentProviderClient.releaseQuietly(client);
36 cursor = null;
37 client = null;
Garfield Tan2010ff72016-09-30 14:55:32 -070038 doc = null;
Steve McKayf68210e2015-11-03 15:23:16 -080039 }
40}