Package javacardx.framework.event
Extension package that defines a framework to handle different source of events.
The central abstractions of the event framework are:
Event sourceswhich are I/O interfaces, devices or peripherals that may generate eventsEvent listenerswhich is the default interface used to receive eventsEvent registrywhich are used to register listeners for event sources
-
Interface Summary Interface Description EventListener A tagging interface that all event listener interfaces must extend.EventSource A tagging interface that all event source must implement. -
Class Summary Class Description EventRegistry An event registry instance is used by applications to register or unregister event listeners for a particular source of events.