jimu-decompiled/sources/com/liulishuo/filedownloader/event/DownloadServiceConnectChangedEvent.java
2025-05-13 19:24:51 +02:00

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;
}
}