io.airlift.http.server.AsyncResponseHandler Maven / Gradle / Ivy
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.airlift.http.server;
import com.google.common.annotations.Beta;
import com.google.common.base.Supplier;
import com.google.common.base.Suppliers;
import com.google.common.util.concurrent.FutureCallback;
import com.google.common.util.concurrent.Futures;
import com.google.common.util.concurrent.ListenableFuture;
import io.airlift.units.Duration;
import javax.ws.rs.container.AsyncResponse;
import javax.ws.rs.container.TimeoutHandler;
import javax.ws.rs.core.Response;
import java.lang.ref.WeakReference;
import java.util.concurrent.Executor;
import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.base.Preconditions.checkNotNull;
import static java.util.concurrent.TimeUnit.MILLISECONDS;
import static javax.ws.rs.core.Response.status;
@Beta
public class AsyncResponseHandler
{
private final AsyncResponse asyncResponse;
private final WeakReference> futureResponseReference;
private AsyncResponseHandler(AsyncResponse asyncResponse, ListenableFuture> futureResponse)
{
this.asyncResponse = checkNotNull(asyncResponse, "asyncResponse is null");
// the jaxrs implementation can hold on to the async timeout for a long time, and
// the future can reference large expensive objects. Since we are only interested
// in canceling this future on a timeout, only hold a weak reference to the future
this.futureResponseReference = new WeakReference>(checkNotNull(futureResponse, "futureResponse is null"));
}
public static AsyncResponseHandler bindAsyncResponse(AsyncResponse asyncResponse, ListenableFuture> futureResponse, Executor httpResponseExecutor)
{
FutureCallback
© 2015 - 2025 Weber Informatics LLC | Privacy Policy