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

io.quarkus.security.identity.AuthenticationRequestContext Maven / Gradle / Ivy

package io.quarkus.security.identity;

import java.util.function.Supplier;

import io.smallrye.mutiny.Uni;

/**
 * A context object that can be used to run blocking tasks
 * 

* Blocking identity providers should used this context object to run blocking tasks, to prevent excessive and * unnecessary delegation to thread pools */ public interface AuthenticationRequestContext { Uni runBlocking(Supplier function); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy