package no.nordicsemi.android.dfu;

import android.bluetooth.BluetoothGatt;
import android.content.Intent;
import java.io.InputStream;

/* JADX INFO: loaded from: classes2.dex */
public interface DfuService extends DfuCallback {
    boolean initialize(Intent intent, BluetoothGatt bluetoothGatt, int i2, InputStream inputStream, InputStream inputStream2);

    boolean isClientCompatible(Intent intent, BluetoothGatt bluetoothGatt);

    void performDfu(Intent intent);

    void release();
}
