31 lines
616 B
Java
31 lines
616 B
Java
package com.liulishuo.filedownloader.connection;
|
|
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
import java.net.ProtocolException;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/* loaded from: classes.dex */
|
|
public interface FileDownloadConnection {
|
|
InputStream a() throws IOException;
|
|
|
|
String a(String str);
|
|
|
|
void a(String str, String str2);
|
|
|
|
boolean a(String str, long j);
|
|
|
|
Map<String, List<String>> b();
|
|
|
|
boolean b(String str) throws ProtocolException;
|
|
|
|
int c() throws IOException;
|
|
|
|
void d();
|
|
|
|
Map<String, List<String>> e();
|
|
|
|
void execute() throws IOException;
|
|
}
|