Fix javadoc of BlobStoreManager class.
Bug: 157016890 Test: n/a Change-Id: I864b571cdc6f34aa2659ca0569181f109075b660
This commit is contained in:
@@ -67,9 +67,9 @@ import java.util.function.Consumer;
|
||||
* <pre class="prettyprint">
|
||||
* final long sessionId = blobStoreManager.createSession(blobHandle);
|
||||
* try (BlobStoreManager.Session session = blobStoreManager.openSession(sessionId)) {
|
||||
* try (ParcelFileDescriptor pfd = new ParcelFileDescriptor.AutoCloseOutputStream(
|
||||
* try (OutputStream out = new ParcelFileDescriptor.AutoCloseOutputStream(
|
||||
* session.openWrite(offsetBytes, lengthBytes))) {
|
||||
* writeData(pfd);
|
||||
* writeData(out);
|
||||
* }
|
||||
* }
|
||||
* </pre>
|
||||
@@ -100,9 +100,9 @@ import java.util.function.Consumer;
|
||||
* <p> The following code snippet shows how to specify the access mode and commit the session:
|
||||
* <pre class="prettyprint">
|
||||
* try (BlobStoreManager.Session session = blobStoreManager.openSession(sessionId)) {
|
||||
* try (ParcelFileDescriptor pfd = new ParcelFileDescriptor.AutoCloseOutputStream(
|
||||
* try (OutputStream out = new ParcelFileDescriptor.AutoCloseOutputStream(
|
||||
* session.openWrite(offsetBytes, lengthBytes))) {
|
||||
* writeData(pfd);
|
||||
* writeData(out);
|
||||
* }
|
||||
* session.allowSameSignatureAccess();
|
||||
* session.allowPackageAccess(packageName, certificate);
|
||||
@@ -134,9 +134,9 @@ import java.util.function.Consumer;
|
||||
*
|
||||
* <p> The following code snippet shows how to access the data blob:
|
||||
* <pre class="prettyprint">
|
||||
* try (ParcelFileDescriptor pfd = new ParcelFileDescriptor.AutoCloseInputStream(
|
||||
* try (InputStream in = new ParcelFileDescriptor.AutoCloseInputStream(
|
||||
* blobStoreManager.openBlob(blobHandle)) {
|
||||
* useData(pfd);
|
||||
* useData(in);
|
||||
* }
|
||||
* </pre>
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user