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

org.jflux.demo.discovery.Activator Maven / Gradle / Ivy

There is a newer version: 0.2.5
Show newest version
package org.jflux.demo.discovery;

import org.jflux.spec.discovery.Discoverer;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;

public class Activator implements BundleActivator {

    public void start(BundleContext context) throws Exception {
        new Thread(new Discoverer()).start();
    }

    public void stop(BundleContext context) throws Exception {
        // TODO add deactivation code here
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy