/* Copyright (C) 2023 José Rebelo, Yoran Vulker This file is part of Gadgetbridge. Gadgetbridge is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Gadgetbridge is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . */ package nodomain.freeyourgadget.gadgetbridge.service.devices.xiaomi; import android.bluetooth.BluetoothAdapter; import android.content.Context; import androidx.annotation.Nullable; import nodomain.freeyourgadget.gadgetbridge.impl.GBDevice; import nodomain.freeyourgadget.gadgetbridge.proto.xiaomi.XiaomiProto; public abstract class XiaomiConnectionSupport { public abstract boolean connect(); public abstract void onAuthSuccess(); public abstract void onUploadProgress(int textRsrc, int progressPercent, boolean ongoing); public abstract void runOnQueue(String taskName, Runnable run); public abstract void dispose(); public abstract void setContext(final GBDevice device, final BluetoothAdapter adapter, final Context context); public abstract void sendCommand(final String taskName, final XiaomiProto.Command command); public abstract void sendDataChunk(final String taskName, final byte[] chunk, @Nullable final XiaomiCharacteristic.SendCallback callback); }