Initial version -- added millennium read funcionality
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
package com.google.android.gms.common.data;
|
||||
|
||||
import android.os.Bundle;
|
||||
import com.google.android.gms.common.api.Releasable;
|
||||
import java.io.Closeable;
|
||||
import java.util.Iterator;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-base@@18.4.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public interface DataBuffer<T> extends Iterable<T>, Releasable, Closeable {
|
||||
void close();
|
||||
|
||||
T get(int i);
|
||||
|
||||
int getCount();
|
||||
|
||||
Bundle getMetadata();
|
||||
|
||||
@Deprecated
|
||||
boolean isClosed();
|
||||
|
||||
@Override // java.lang.Iterable
|
||||
Iterator<T> iterator();
|
||||
|
||||
void release();
|
||||
|
||||
Iterator<T> singleRefIterator();
|
||||
}
|
||||
Reference in New Issue
Block a user