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

io.quarkus.arc.runtime.LaunchModeProducer Maven / Gradle / Ivy

There is a newer version: 3.17.0.CR1
Show newest version
package io.quarkus.arc.runtime;

import jakarta.enterprise.context.Dependent;
import jakarta.enterprise.inject.Produces;

import io.quarkus.runtime.LaunchMode;

@Dependent
public class LaunchModeProducer {

    @Produces
    LaunchMode mode() {
        return LaunchMode.current();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy