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

com.yahoo.jdisc.core.ApplicationEnvironmentModule Maven / Gradle / Ivy

// Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.jdisc.core;

import com.google.inject.AbstractModule;
import com.google.inject.Provides;
import com.yahoo.jdisc.application.ContainerActivator;
import com.yahoo.jdisc.application.ContainerBuilder;
import com.yahoo.jdisc.application.ContainerThread;
import com.yahoo.jdisc.application.OsgiFramework;
import com.yahoo.jdisc.service.CurrentContainer;
import com.yahoo.jdisc.statistics.ContainerWatchdogMetrics;

import java.util.concurrent.ThreadFactory;

/**
 * @author Simon Thoresen Hult
 */
class ApplicationEnvironmentModule extends AbstractModule {

    private final ApplicationLoader loader;

    public ApplicationEnvironmentModule(ApplicationLoader loader) {
        this.loader = loader;
    }

    @Override
    protected void configure() {
        bind(ContainerActivator.class).toInstance(loader);
        bind(CurrentContainer.class).toInstance(loader);
        bind(OsgiFramework.class).toInstance(loader.osgiFramework());
        bind(ThreadFactory.class).to(ContainerThread.Factory.class);
        bind(ContainerWatchdogMetrics.class).toInstance(loader.getContainerWatchdogMetrics());
    }

    @Provides
    public ContainerBuilder containerBuilder() {
        return loader.newContainerBuilder();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy