javax.enterprise.context.control.RequestContextController Java Examples

The following examples show how to use javax.enterprise.context.control.RequestContextController. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ContextPropagationRequestContextControllerProvider.java    From smallrye-fault-tolerance with Apache License 2.0 4 votes vote down vote up
@Override
public RequestContextController get() {
    return DUMMY;
}
 
Example #2
Source File: DefaultRequestContextControllerProvider.java    From smallrye-fault-tolerance with Apache License 2.0 4 votes vote down vote up
@Override
public RequestContextController get() {
    return CDI.current().select(RequestContextController.class).get();
}
 
Example #3
Source File: RequestScopeActivator.java    From smallrye-fault-tolerance with Apache License 2.0 4 votes vote down vote up
public RequestScopeActivator(FaultToleranceStrategy<V> delegate, RequestContextController requestContextController) {
    this.delegate = delegate;
    this.requestContextController = requestContextController;
}
 
Example #4
Source File: RequestContextControllerProvider.java    From smallrye-fault-tolerance with Apache License 2.0 votes vote down vote up
RequestContextController get();