SocketIOAck.java 616 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 SocketIOAck {
    public boolean isAcknowledged();

    public /* varargs */ void send(@Nonnull Object ... var1) throws IOException;

    public void send(@Nonnull JSONArray var1) throws IOException;
}