Package org.eclipse.keyple.core.plugin
Interface AutonomousObservablePluginApi
public interface AutonomousObservablePluginApi
API associated to a
AutonomousObservablePluginSpi
- Since:
- 2.0.0
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onReaderConnected
(Set<ReaderSpi> readers) Must be invoked when one or more readers are connected to the system.void
onReaderDisconnected
(Set<String> readerNames) Must be invoked when one or more readers are disconnected from the system.
-
Method Details
-
onReaderConnected
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
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
-