Back to project page BleAdapter.
The source code is released under:
Apache License
If you think the Android project BleAdapter listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.indy.labs.android.BleEventAdapter.events; /*from w w w .j a va 2s.c o m*/ import android.bluetooth.BluetoothGatt; public class ReliableWriteCompleted { private final BluetoothGatt mGatt; private final int mStatus; public ReliableWriteCompleted(BluetoothGatt gatt, int status) { mGatt = gatt; mStatus = status; } public BluetoothGatt getmGatt() { return mGatt; } public int getmStatus() { return mStatus; } }