Interface ServiceFactory
-
public interface ServiceFactory
Allows services to provide customized service objects in the OSGi environment.When registering a service, a
ServiceFactory
object can be used instead of a service object, so that the bundle developer can gain control of the specific service object granted to a bundle that is using the service.When this happens, the
BundleContext.getService(ServiceReference)
method calls theServiceFactory.getService
method to create a service object specifically for the requesting bundle. The service object returned by theServiceFactory
is cached by the Framework until the bundle releases its use of the service.When the bundle's use count for the service equals zero (including the bundle stopping or the service being unregistered), the
ServiceFactory.ungetService
method is called.ServiceFactory
objects are only used by the Framework and are not made available to other bundles in the OSGi environment. The Framework may concurrently call aServiceFactory
.- Version:
- $Revision: 5967 $
- See Also:
BundleContext.getService(org.osgi.framework.ServiceReference)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object
getService(Bundle bundle, ServiceRegistration registration)
Creates a new service object.void
ungetService(Bundle bundle, ServiceRegistration registration, java.lang.Object service)
Releases a service object.
-
-
-
Method Detail
-
getService
java.lang.Object getService(Bundle bundle, ServiceRegistration registration)
Creates a new service object.The Framework invokes this method the first time the specified
bundle
requests a service object using theBundleContext.getService(ServiceReference)
method. The service factory can then return a specific service object for each bundle.The Framework caches the value returned (unless it is
null
), and will return the same service object on any future call toBundleContext.getService
for the same bundle. This means the Framework must not allow this method to be concurrently called for the same bundle.The Framework will check if the returned service object is an instance of all the classes named when the service was registered. If not, then
null
is returned to the bundle.- Parameters:
bundle
- The bundle using the service.registration
- TheServiceRegistration
object for the service.- Returns:
- A service object that must be an instance of all the classes named when the service was registered.
- See Also:
BundleContext.getService(org.osgi.framework.ServiceReference)
-
ungetService
void ungetService(Bundle bundle, ServiceRegistration registration, java.lang.Object service)
Releases a service object.The Framework invokes this method when a service has been released by a bundle. The service object may then be destroyed.
- Parameters:
bundle
- The bundle releasing the service.registration
- TheServiceRegistration
object for the service.service
- The service object returned by a previous call to theServiceFactory.getService
method.- See Also:
BundleContext.ungetService(org.osgi.framework.ServiceReference)
-
-