- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
13 lines
387 B
Java
13 lines
387 B
Java
package csdk.glucentralservices.eventbus;
|
|
|
|
/* loaded from: classes4.dex */
|
|
class EventHandlerData {
|
|
public final IServerEventBus eventBus;
|
|
public final IServerEventHandler handler;
|
|
|
|
public EventHandlerData(IServerEventBus iServerEventBus, IServerEventHandler iServerEventHandler) {
|
|
this.eventBus = iServerEventBus;
|
|
this.handler = iServerEventHandler;
|
|
}
|
|
}
|