Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
Mithilfe eines Bundle-Aktivators kann ein Bundle beim Start und beim Stopp beliebige Operationen ausführen. Der Bundle-Aktivator muss das Interface org.osgi.framework.BundleActivator implementieren. Dieses Interface definiert die vom Bundle-Entwickler zu implementierenden Methoden, die beim Start und beim Stopp eines Bundles vom Framework aufgerufen werden (vgl. Listing 3-3).
package org.osgi.framework;
public interface BundleActivator {
public void start(BundleContext context) throws Exception;
public void stop(BundleContext context) throws Exception;
} |