Package org.apache.karaf.diagnostic.common

Examples of org.apache.karaf.diagnostic.common.LogDumpProvider


    private ServiceTracker<DumpProvider, DumpProvider> providersTracker;

    @Override
    public void start(final BundleContext context) throws Exception {
        registrations = new ArrayList<ServiceRegistration<DumpProvider>>();
        registrations.add(context.registerService(DumpProvider.class, new LogDumpProvider(context), null));

        featuresServiceTracker = new SingleServiceTracker<FeaturesService>(context, FeaturesService.class, new SingleServiceTracker.SingleServiceListener() {
            @Override
            public void serviceFound() {
                featuresProviderRegistration =
View Full Code Here

TOP

Related Classes of org.apache.karaf.diagnostic.common.LogDumpProvider

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.