Package org.eclipse.keyple.core.plugin
Interface AutonomousObservablePluginApi
-
public interface AutonomousObservablePluginApi
API associated to aAutonomousObservablePluginSpi
- Since:
- 2.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onReaderConnected(java.util.Set<ReaderSpi> readers)
Must be invoked when one or more readers are connected to the system.void
onReaderDisconnected(java.util.Set<java.lang.String> readerNames)
Must be invoked when one or more readers are disconnected from the system.
-
-
-
Method Detail
-
onReaderConnected
void onReaderConnected(java.util.Set<ReaderSpi> readers)
Must be invoked when one or more readers are connected to the system.- Parameters:
readers
- the readers connected- Throws:
java.lang.IllegalArgumentException
- If the Set provided as argument is null or empty- Since:
- 2.0.0
-
onReaderDisconnected
void onReaderDisconnected(java.util.Set<java.lang.String> readerNames)
Must be invoked when one or more readers are disconnected from the system.- Parameters:
readerNames
- the readers names disconnected- Throws:
java.lang.IllegalArgumentException
- If the Set provided as argument is null or empty- Since:
- 2.0.0
-
-