EncryptionChangeEventpublic class EncryptionChangeEvent extends BluetoothEvent
Fields Summary |
---|
private int | handleACL connection handle for which encryption change has been performed. | private boolean | successIndicates whether the change has occured. | private boolean | enabledIndicates whether the link encryption is enabled. |
Constructors Summary |
---|
public EncryptionChangeEvent(int aclHandle, boolean succ, boolean on)Class constructor.
handle = aclHandle;
success = succ;
enabled = on;
|
Methods Summary |
---|
public void | process()Processes this event.
BluetoothStack.getInstance().onEncryptionChange(handle, success);
|
|