SocketIOService.java
633 Bytes
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* aQute.bnd.annotation.ProviderType
* javax.annotation.Nonnull
*/
package com.adobe.granite.socketio;
import aQute.bnd.annotation.ProviderType;
import com.adobe.granite.socketio.SocketIOListener;
import com.adobe.granite.socketio.SocketIONamespace;
import java.util.Map;
import javax.annotation.Nonnull;
@ProviderType
public interface SocketIOService {
@Nonnull
public Map<String, SocketIONamespace> getNamespaces();
public void register(@Nonnull SocketIOListener var1);
public void unregister(@Nonnull SocketIOListener var1);
}