All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.osgi.framework.ServiceObjects Maven / Gradle / Ivy

Go to download

AspectJ tools most notably contains the AspectJ compiler (AJC). AJC applies aspects to Java classes during compilation, fully replacing Javac for plain Java classes and also compiling native AspectJ or annotation-based @AspectJ syntax. Furthermore, AJC can weave aspects into existing class files in a post-compile binary weaving step. This library is a superset of AspectJ weaver and hence also of AspectJ runtime.

There is a newer version: 1.9.22.1
Show newest version
/*
 * Copyright (c) OSGi Alliance (2012, 2016). All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.osgi.framework;

import org.osgi.annotation.versioning.ProviderType;

/**
 * Allows multiple service objects for a service to be obtained.
 * 

* For services with {@link Constants#SCOPE_PROTOTYPE prototype} scope, multiple * service objects for the service can be obtained. Since implementations of * {@link PrototypeServiceFactory} can return the same service object * repeatedly, the framework must use count the returned service objects to * release the service object only when its use count returns to zero. *

* For services with {@link Constants#SCOPE_SINGLETON singleton} or * {@link Constants#SCOPE_BUNDLE bundle} scope, only one, use-counted service * object is available to a requesting bundle. *

* Any unreleased service objects obtained from this {@code ServiceObjects} * object are automatically released by the framework when the bundle associated * with the BundleContext used to create this {@code ServiceObjects} object is * stopped. * * @param Type of Service * @see BundleContext#getServiceObjects(ServiceReference) * @see PrototypeServiceFactory * @ThreadSafe * @since 1.8 * @author $Id: 84901895b763946d9f0e3819e47ecbf0ffa60f04 $ */ @ProviderType public interface ServiceObjects { /** * Returns a service object for the {@link #getServiceReference() * associated} service. *

* This {@code ServiceObjects} object can be used to obtain multiple service * objects for the associated service if the service has * {@link Constants#SCOPE_PROTOTYPE prototype} scope. *

* If the associated service has {@link Constants#SCOPE_SINGLETON singleton} * or {@link Constants#SCOPE_BUNDLE bundle} scope, this method behaves the * same as calling the {@link BundleContext#getService(ServiceReference)} * method for the associated service. That is, only one, use-counted service * object is available from this {@link ServiceObjects} object. *

* This method will always return {@code null} when the associated service * has been unregistered. *

* For a prototype scope service, the following steps are required to obtain * a service object: *

    *
  1. If the associated service has been unregistered, {@code null} is * returned.
  2. *
  3. The * {@link PrototypeServiceFactory#getService(Bundle, ServiceRegistration)} * method is called to supply a customized service object for the caller. *
  4. *
  5. If the service object returned by the {@code PrototypeServiceFactory} * object is {@code null}, not an {@code instanceof} all the classes named * when the service was registered or the {@code PrototypeServiceFactory} * object throws an exception, {@code null} is returned and a Framework * event of type {@link FrameworkEvent#ERROR} containing a * {@link ServiceException} describing the error is fired.
  6. *
  7. The use count for the customized service object is incremented by * one.
  8. *
  9. The customized service object is returned.
  10. *
* * @return A service object for the associated service or {@code null} if * the service is not registered, the customized service object * returned by a {@code ServiceFactory} does not implement the * classes under which it was registered or the * {@code ServiceFactory} threw an exception. * @throws IllegalStateException If the BundleContext used to create this * {@code ServiceObjects} object is no longer valid. * @see #ungetService(Object) */ public S getService(); /** * Releases a service object for the {@link #getServiceReference() * associated} service. *

* This {@code ServiceObjects} object can be used to obtain multiple service * objects for the associated service if the service has * {@link Constants#SCOPE_PROTOTYPE prototype} scope. If the associated * service has {@link Constants#SCOPE_SINGLETON singleton} or * {@link Constants#SCOPE_BUNDLE bundle} scope, this method behaves the same * as calling the {@link BundleContext#ungetService(ServiceReference)} * method for the associated service. That is, only one, use-counted service * object is available from this {@link ServiceObjects} object. *

* For a prototype scope service, the following steps are required to * release a service object: *

    *
  1. If the associated service has been unregistered, this method returns * without doing anything.
  2. *
  3. The use count for the specified service object is decremented by one. *
  4. *
  5. If the use count for the specified service object is now zero, the * {@link PrototypeServiceFactory#ungetService(Bundle, ServiceRegistration, Object)} * method is called to release the specified service object.
  6. *
*

* The specified service object must no longer be used and all references to * it should be destroyed after calling this method when the use count has * returned to zero. * * @param service A service object previously provided by this * {@code ServiceObjects} object. * @throws IllegalStateException If the BundleContext used to create this * {@code ServiceObjects} object is no longer valid. * @throws IllegalArgumentException If the specified service object is * {@code null} or was not provided by a {@code ServiceObjects} * object for the associated service. * @see #getService() */ public void ungetService(S service); /** * Returns the {@link ServiceReference} for the service associated with this * {@code ServiceObjects} object. * * @return The {@link ServiceReference} for the service associated with this * {@code ServiceObjects} object. */ public ServiceReference getServiceReference(); }