Interface IDevice.EventListener

Enclosing class:
IDevice

public static interface IDevice.EventListener
Listener which gets called when devices are added and removed.
  • Method Summary

    Modifier and Type Method Description
    void deviceAdded​(java.lang.String udid)
    Device with the specified UDID was added.
    void deviceRemoved​(java.lang.String udid)
    Device with the specified UDID was removed.
  • Method Details

    • deviceAdded

      void deviceAdded​(java.lang.String udid)
      Device with the specified UDID was added.
      Parameters:
      udid - the UDID of the added device.
    • deviceRemoved

      void deviceRemoved​(java.lang.String udid)
      Device with the specified UDID was removed.
      Parameters:
      udid - the UDID of the removed device.