Interface ZCLEventListener


public interface ZCLEventListener
This interface represents a listener to events from ZigBee Device nodes.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    Property key for the optional attribute data type of an attribute reporting configuration record, cf.
    static final String
    Property key for the optional maximum interval, in seconds between issuing reports of the attribute.
    static final String
    Property key for the optional minimum interval, in seconds between issuing reports of the attribute.
    static final String
    Property key for the optional maximum change to the attribute that will result in a report being issued.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Notifies the reception of an event.
    void
    notifyTimeOut(int timeout)
    Notifies that the timeout is elapsed.
    void
    Notifies that a failure has occurred.
  • Field Details

    • ATTRIBUTE_DATA_TYPE

      static final String ATTRIBUTE_DATA_TYPE
      Property key for the optional attribute data type of an attribute reporting configuration record, cf. ZCL Figure 2.16 Format of the Attribute Reporting Configuration Record.
      See Also:
    • MIN_REPORT_INTERVAL

      static final String MIN_REPORT_INTERVAL
      Property key for the optional minimum interval, in seconds between issuing reports of the attribute. A ZigBee Event Listener service can declare the minimum frequency at which events it wants notifications.
      See Also:
    • MAX_REPORT_INTERVAL

      static final String MAX_REPORT_INTERVAL
      Property key for the optional maximum interval, in seconds between issuing reports of the attribute. A ZigBee Event Listener service can declare the maximum frequency at which events it wants notifications.
      See Also:
    • REPORTABLE_CHANGE

      static final String REPORTABLE_CHANGE
      Property key for the optional maximum change to the attribute that will result in a report being issued. A ZigBee Event Listener service can declare the maximum frequency at which events it wants notifications.
      See Also:
  • Method Details