Interface AutonomousObservablePluginApi


public interface AutonomousObservablePluginApi
API associated to a AutonomousObservablePluginSpi
Since:
2.0.0
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Must be invoked when one or more readers are connected to the system.
    void
    Must be invoked when one or more readers are disconnected from the system.
  • Method Details

    • onReaderConnected

      void onReaderConnected(Set<ReaderSpi> readers)
      Must be invoked when one or more readers are connected to the system.
      Parameters:
      readers - the readers connected
      Throws:
      IllegalArgumentException - If the Set provided as argument is null or empty
      Since:
      2.0.0
    • onReaderDisconnected

      void onReaderDisconnected(Set<String> readerNames)
      Must be invoked when one or more readers are disconnected from the system.
      Parameters:
      readerNames - the readers names disconnected
      Throws:
      IllegalArgumentException - If the Set provided as argument is null or empty
      Since:
      2.0.0