parent
6bd50258cf
commit
b1a4ad20fe
@ -0,0 +1,11 @@ |
||||
// IBDumpService.aidl |
||||
package top.niunaijun.blackbox.core.system.dump; |
||||
|
||||
import android.os.IBinder; |
||||
import top.niunaijun.blackbox.entity.dump.DumpResult; |
||||
|
||||
interface IBDumpManagerService { |
||||
void registerMonitor(IBinder monitor); |
||||
void unregisterMonitor(IBinder monitor); |
||||
void noticeMonitor(in DumpResult result); |
||||
} |
@ -0,0 +1,7 @@ |
||||
package top.niunaijun.blackbox.core.system.dump; |
||||
|
||||
import top.niunaijun.blackbox.entity.dump.DumpResult; |
||||
|
||||
interface IBDumpMonitor { |
||||
void onDump(in DumpResult result); |
||||
} |
@ -0,0 +1,3 @@ |
||||
package top.niunaijun.blackbox.entity.dump; |
||||
|
||||
parcelable DumpResult; |
Loading…
Reference in new issue