L. Gangemi
L. Gangemi

Reputation: 3290

Android BLE CallBacks, OnRead/OnWrite Super

I've been working with Android BLE classes for 5 or 6 month, i've quite understood how everything works. Today I noticed that in the BluetoothGatt Callback methods are included super methods like super.onCharacteristicRead(gatt, characteristic, status);

My question now is, what do they do? I've never noticed any difference between working with them or without them.

Upvotes: 0

Views: 320

Answers (1)

Emil
Emil

Reputation: 18442

There is no need to call the parent methods since they do nothing. Where exactly have you seen this?

Upvotes: 1

Related Questions