AuthenticationCompleteEventpublic class AuthenticationCompleteEvent extends BluetoothEvent Authentication completion event. |
Fields Summary |
---|
private int | handleACL connection handle for which authentication has been performed. | private boolean | successIndicates whether the authentication succeeded. |
Constructors Summary |
---|
public AuthenticationCompleteEvent(int aclHandle, boolean succ)Class constructor.
handle = aclHandle;
success = succ;
|
Methods Summary |
---|
public void | process()Processes this event.
BluetoothStack.getInstance().onAuthenticationComplete(handle, success);
|
|