package info.nightscout.androidaps.plugins.NSClientInternal.acks; import org.json.JSONObject; import info.nightscout.androidaps.MainApp; import info.nightscout.androidaps.plugins.NSClientInternal.events.EventNSClientNewLog; import io.socket.client.Ack; /** * Created by mike on 02.01.2016. */ public class NSAuthAck implements Ack{ public boolean read = false; public boolean write = false; public boolean write_treatment = false; public void call(Object...args) { JSONObject response = (JSONObject)args[0]; read = response.optBoolean("read"); write = response.optBoolean("write"); write_treatment = response.optBoolean("write_treatment"); MainApp.bus().post(this); } }