Mistake on this page?
Report an issue in GitHub or email us
Public Member Functions | Protected Member Functions
Gap::EventHandler Struct Reference

Definition of the general handler of Gap related events. More...

#include <Gap.h>

Inheritance diagram for Gap::EventHandler:
ChainableGapEventHandler LinkLossService

Public Member Functions

virtual void onScanRequestReceived (const ScanRequestEvent &event)
 Called when an advertising device receive a scan request. More...
 
virtual void onAdvertisingStart (const AdvertisingStartEvent &event)
 Called when advertising starts. More...
 
virtual void onAdvertisingEnd (const AdvertisingEndEvent &event)
 Called when advertising ends. More...
 
virtual void onAdvertisingReport (const AdvertisingReportEvent &event)
 Called when a scanner receives an advertising or a scan response packet. More...
 
virtual void onScanTimeout (const ScanTimeoutEvent &event)
 Called when scan times out. More...
 
virtual void onPeriodicAdvertisingSyncEstablished (const PeriodicAdvertisingSyncEstablishedEvent &event)
 Called when first advertising packet in periodic advertising is received. More...
 
virtual void onPeriodicAdvertisingReport (const PeriodicAdvertisingReportEvent &event)
 Called when a periodic advertising packet is received. More...
 
virtual void onPeriodicAdvertisingSyncLoss (const PeriodicAdvertisingSyncLoss &event)
 Called when a periodic advertising sync has been lost. More...
 
virtual void onConnectionComplete (const ConnectionCompleteEvent &event)
 Called when connection attempt ends. More...
 
virtual void onUpdateConnectionParametersRequest (const UpdateConnectionParametersRequestEvent &event)
 Called when the peer request connection parameters updates. More...
 
virtual void onConnectionParametersUpdateComplete (const ConnectionParametersUpdateCompleteEvent &event)
 Called when connection parameters have been updated. More...
 
virtual void onDisconnectionComplete (const DisconnectionCompleteEvent &event)
 Called when a connection has been disconnected. More...
 
virtual void onReadPhy (ble_error_t status, connection_handle_t connectionHandle, phy_t txPhy, phy_t rxPhy)
 Function invoked when the current transmitter and receiver PHY have been read for a given connection. More...
 
virtual void onPhyUpdateComplete (ble_error_t status, connection_handle_t connectionHandle, phy_t txPhy, phy_t rxPhy)
 Function invoked when the update process of the PHY has been completed. More...
 
virtual void onDataLengthChange (connection_handle_t connectionHandle, uint16_t txSize, uint16_t rxSize)
 Function invoked when the connections changes the maximum number of octets that can be sent or received by the controller in a single packet. More...
 
virtual void onPrivacyEnabled ()
 Function invoked when the privacy subsystem has been enabled and is ready to be used. More...
 

Protected Member Functions

 ~EventHandler ()=default
 Prevent polymorphic deletion and avoid unnecessary virtual destructor as the Gap class will never delete the instance it contains. More...
 

Detailed Description

Definition of the general handler of Gap related events.

Definition at line 303 of file Gap.h.

Constructor & Destructor Documentation

~EventHandler ( )
protecteddefault

Prevent polymorphic deletion and avoid unnecessary virtual destructor as the Gap class will never delete the instance it contains.

Member Function Documentation

virtual void onAdvertisingEnd ( const AdvertisingEndEvent event)
virtual

Called when advertising ends.

Advertising ends when the process timeout or if it is stopped by the application or if the local device accepts a connection request.

Parameters
eventAdvertising end event.
Note
Check event.getStatus() to see if advertising ended successfully
See also
stopAdvertising()
onConnectionComplete()

Reimplemented in ChainableGapEventHandler.

Definition at line 343 of file Gap.h.

virtual void onAdvertisingReport ( const AdvertisingReportEvent event)
virtual

Called when a scanner receives an advertising or a scan response packet.

Parameters
eventAdvertising report.
See also
startScan()

Reimplemented in ChainableGapEventHandler.

Definition at line 354 of file Gap.h.

virtual void onAdvertisingStart ( const AdvertisingStartEvent event)
virtual

Called when advertising starts.

Parameters
eventAdvertising start event.
Note
Check event.getStatus() to see if advertising started successfully
See also
startAdvertising()

Reimplemented in ChainableGapEventHandler.

Definition at line 326 of file Gap.h.

virtual void onConnectionComplete ( const ConnectionCompleteEvent event)
virtual

Called when connection attempt ends.

Check event.getStatus() to see if connection was established. If this device is the peripheral and it was advertising this will end the advertising set which will also create the onAdvertisingEnd event.

See also
startAdvertising()
connect()
Parameters
eventConnection event.

Reimplemented in ChainableGapEventHandler.

Definition at line 424 of file Gap.h.

virtual void onConnectionParametersUpdateComplete ( const ConnectionParametersUpdateCompleteEvent event)
virtual

Called when connection parameters have been updated.

Parameters
eventThe new connection parameters.
See also
updateConnectionParameters()
acceptConnectionParametersUpdate()

Reimplemented in ChainableGapEventHandler.

Definition at line 459 of file Gap.h.

virtual void onDataLengthChange ( connection_handle_t  connectionHandle,
uint16_t  txSize,
uint16_t  rxSize 
)
virtual

Function invoked when the connections changes the maximum number of octets that can be sent or received by the controller in a single packet.

A single L2CAP packet can be fragmented across many such packets.

Note
This only triggers if controller supports data length extension and negotiated data length is longer than the default 23.
Parameters
connectionHandleThe handle of the connection that changed the size.
txSizeNumber of octets we can send on this connection in a single packet.
rxSizeNumber of octets we can receive on this connection in a single packet.

Reimplemented in ChainableGapEventHandler.

Definition at line 549 of file Gap.h.

virtual void onDisconnectionComplete ( const DisconnectionCompleteEvent event)
virtual

Called when a connection has been disconnected.

Parameters
eventDetails of the event.
See also
disconnect()

Reimplemented in LinkLossService, and ChainableGapEventHandler.

Definition at line 472 of file Gap.h.

virtual void onPeriodicAdvertisingReport ( const PeriodicAdvertisingReportEvent event)
virtual

Called when a periodic advertising packet is received.

Parameters
eventPeriodic advertisement event.
Version
: 5+.
See also
createSync()

Reimplemented in ChainableGapEventHandler.

Definition at line 393 of file Gap.h.

virtual void onPeriodicAdvertisingSyncEstablished ( const PeriodicAdvertisingSyncEstablishedEvent event)
virtual

Called when first advertising packet in periodic advertising is received.

Parameters
eventPeriodic advertising sync event.
Version
: 5+.
See also
createSync()

Reimplemented in ChainableGapEventHandler.

Definition at line 378 of file Gap.h.

virtual void onPeriodicAdvertisingSyncLoss ( const PeriodicAdvertisingSyncLoss event)
virtual

Called when a periodic advertising sync has been lost.

Parameters
eventDetails of the event.
Version
: 5+.
See also
createSync()

Reimplemented in ChainableGapEventHandler.

Definition at line 408 of file Gap.h.

virtual void onPhyUpdateComplete ( ble_error_t  status,
connection_handle_t  connectionHandle,
phy_t  txPhy,
phy_t  rxPhy 
)
virtual

Function invoked when the update process of the PHY has been completed.

The process can be initiated by a call to the function setPhy, the local bluetooth subsystem or the peer.

Parameters
statusStatus of the operation: BLE_ERROR_NONE in case of success or an appropriate error code.
connectionHandleThe handle of the connection on which the operation was made.
txPhyPHY used by the transmitter.
rxPhyPHY used by the receiver.
Note
Success doesn't mean the PHY has been updated it means both ends have negotiated the best PHY according to their configuration and capabilities. The PHY currently used are present in the txPhy and rxPhy parameters.
See also
setPhy()
Version
: 5+.

Reimplemented in ChainableGapEventHandler.

Definition at line 528 of file Gap.h.

virtual void onPrivacyEnabled ( )
virtual

Function invoked when the privacy subsystem has been enabled and is ready to be used.

See also
enablePrivacy()

Reimplemented in ChainableGapEventHandler.

Definition at line 563 of file Gap.h.

virtual void onReadPhy ( ble_error_t  status,
connection_handle_t  connectionHandle,
phy_t  txPhy,
phy_t  rxPhy 
)
virtual

Function invoked when the current transmitter and receiver PHY have been read for a given connection.

Parameters
statusStatus of the operation: BLE_ERROR_NONE in case of success or an appropriate error code.
connectionHandleThe handle of the connection for which the PHYs have been read.
txPhyPHY used by the transmitter.
rxPhyPHY used by the receiver.
See also
readPhy().
Version
: 5+.

Reimplemented in ChainableGapEventHandler.

Definition at line 494 of file Gap.h.

virtual void onScanRequestReceived ( const ScanRequestEvent event)
virtual

Called when an advertising device receive a scan request.

Parameters
eventScan request event.
Version
: 5+.
See also
AdvertisingParameters::setScanRequestNotification().

Reimplemented in ChainableGapEventHandler.

Definition at line 313 of file Gap.h.

virtual void onScanTimeout ( const ScanTimeoutEvent event)
virtual

Called when scan times out.

Parameters
eventAssociated event.
See also
startScan()

Reimplemented in ChainableGapEventHandler.

Definition at line 365 of file Gap.h.

virtual void onUpdateConnectionParametersRequest ( const UpdateConnectionParametersRequestEvent event)
virtual

Called when the peer request connection parameters updates.

Application must accept the update with acceptConnectionParametersUpdate() or reject it with rejectConnectionParametersUpdate().

Parameters
eventThe connection parameters requested by the peer.
Version
4.1+.
Note
This event will only be produced if manageConnectionParametersUpdateRequest() was called with true. Otherwise the stack will handle the request and no event will be generated.
See also
manageConnectionParametersUpdateRequest()
acceptConnectionParametersUpdate()
rejectConnectionParametersUpdate()

Reimplemented in ChainableGapEventHandler.

Definition at line 445 of file Gap.h.

Important Information for this Arm website

This site uses cookies to store information on your computer. By continuing to use our site, you consent to our cookies. If you are not happy with the use of these cookies, please review our Cookie Policy to learn how they can be disabled. By disabling cookies, some features of the site will not work.