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

org.jboss.as.ee.concurrent.handle.SetupContextHandle Maven / Gradle / Ivy

There is a newer version: 35.0.0.Beta1
Show newest version
/*
 * Copyright The WildFly Authors
 * SPDX-License-Identifier: Apache-2.0
 */
package org.jboss.as.ee.concurrent.handle;

/**
 * The Wildfly's EE context handle that sets a saved invocation context.
 *
 * @author Eduardo Martins
 */
public interface SetupContextHandle extends org.glassfish.enterprise.concurrent.spi.ContextHandle {

    /**
     * @see org.glassfish.enterprise.concurrent.spi.ContextSetupProvider#setup(org.glassfish.enterprise.concurrent.spi.ContextHandle)
     * @return
     * @throws IllegalStateException
     */
    ResetContextHandle setup() throws IllegalStateException;

    /**
     * Retrieves the name of the factory which built the handle.
     * @return
     */
    String getFactoryName();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy