SocketIOEmitter.java 759 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  aQute.bnd.annotation.ProviderType
 *  javax.annotation.Nonnull
 *  org.apache.sling.commons.json.JSONArray
 */
package com.adobe.granite.socketio;

import aQute.bnd.annotation.ProviderType;
import java.io.IOException;
import javax.annotation.Nonnull;
import org.apache.sling.commons.json.JSONArray;

@ProviderType
public interface SocketIOEmitter {
    @Nonnull
    public /* varargs */ SocketIOEmitter emit(@Nonnull String var1, @Nonnull Object ... var2) throws IOException;

    @Nonnull
    public SocketIOEmitter emit(@Nonnull String var1, @Nonnull JSONArray var2) throws IOException;

    @Nonnull
    public /* varargs */ SocketIOEmitter to(@Nonnull String ... var1);
}