blob: 4926feb06e55b349861195593cc753c69aa5e1a5 [file] [log] [blame]
Chalard Jeanf89d7be2018-12-07 23:09:02 +09001/*
2 * Copyright (C) 2018 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 android.net.ipmemorystore;
18
19import android.net.ipmemorystore.Blob;
20import android.net.ipmemorystore.StatusParcelable;
21
22/** {@hide} */
23oneway interface IOnBlobRetrievedListener {
24 /**
25 * Private data was retrieved for the L2 key and name specified.
26 * Note this does not return the client ID, as clients are expected to only ever use one ID.
27 */
28 void onBlobRetrieved(in StatusParcelable status, in String l2Key, in String name,
29 in Blob data);
30}