22 lines
518 B
Java
22 lines
518 B
Java
package com.liulishuo.filedownloader.event;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class DownloadServiceConnectChangedEvent extends IDownloadEvent {
|
|
private final ConnectStatus c;
|
|
|
|
public enum ConnectStatus {
|
|
connected,
|
|
disconnected,
|
|
lost
|
|
}
|
|
|
|
public DownloadServiceConnectChangedEvent(ConnectStatus connectStatus, Class<?> cls) {
|
|
super("event.service.connect.changed");
|
|
this.c = connectStatus;
|
|
}
|
|
|
|
public ConnectStatus b() {
|
|
return this.c;
|
|
}
|
|
}
|