Uses of Interface
org.osgi.framework.ServiceListener
-
Packages that use ServiceListener Package Description org.apache.felix.framework org.osgi.framework Framework Package Version 1.8.org.osgi.util.tracker Tracker Package Version 1.5. -
-
Uses of ServiceListener in org.apache.felix.framework
Classes in org.apache.felix.framework that implement ServiceListener Modifier and Type Class Description class
Logger
This class mimics the standard OSGi LogService interface.Methods in org.apache.felix.framework with parameters of type ServiceListener Modifier and Type Method Description void
BundleContextImpl. addServiceListener(ServiceListener l)
void
BundleContextImpl. addServiceListener(ServiceListener l, java.lang.String s)
(package private) void
Felix. addServiceListener(BundleImpl bundle, ServiceListener l, java.lang.String f)
Implementation for BundleContext.addServiceListener().void
BundleContextImpl. removeServiceListener(ServiceListener l)
(package private) void
Felix. removeServiceListener(BundleImpl bundle, ServiceListener l)
Implementation for BundleContext.removeServiceListener(). -
Uses of ServiceListener in org.osgi.framework
Subinterfaces of ServiceListener in org.osgi.framework Modifier and Type Interface Description interface
AllServiceListener
AServiceEvent
listener that does not filter based upon package wiring.interface
UnfilteredServiceListener
AServiceEvent
listener that does not filter based upon any filter string specified toBundleContext.addServiceListener(ServiceListener, String)
.Methods in org.osgi.framework with parameters of type ServiceListener Modifier and Type Method Description void
BundleContext. addServiceListener(ServiceListener listener)
Adds the specifiedServiceListener
object to the context bundle's list of listeners.void
BundleContext. addServiceListener(ServiceListener listener, java.lang.String filter)
Adds the specifiedServiceListener
object with the specifiedfilter
to the context bundle's list of listeners.void
BundleContext. removeServiceListener(ServiceListener listener)
Removes the specifiedServiceListener
object from the context bundle's list of listeners. -
Uses of ServiceListener in org.osgi.util.tracker
Classes in org.osgi.util.tracker that implement ServiceListener Modifier and Type Class Description private class
ServiceTracker.AllTracked
Subclass of Tracked which implements the AllServiceListener interface.private class
ServiceTracker.Tracked
Inner class which subclasses AbstractTracked.
-