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

org.eclipse.jetty.server.handler.IdleTimeoutHandler Maven / Gradle / Ivy

There is a newer version: 12.0.13
Show newest version
//
// ========================================================================
// Copyright (c) 1995 Mort Bay Consulting Pty Ltd and others.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License v. 2.0 which is available at
// https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
// which is available at https://www.apache.org/licenses/LICENSE-2.0.
//
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
// ========================================================================
//

package org.eclipse.jetty.server.handler;

import org.eclipse.jetty.server.Handler;
import org.eclipse.jetty.server.Request;
import org.eclipse.jetty.server.Response;
import org.eclipse.jetty.util.Callback;

/**
 * Handler to adjust the idle timeout of requests while dispatched.
 * Can be applied in jetty.xml with
 * 
 *   <Get id='handler' name='Handler'/>
 *   <Set name='Handler'>
 *     <New id='idleTimeoutHandler' class='org.eclipse.jetty.server.handler.IdleTimeoutHandler'>
 *       <Set name='Handler'><Ref id='handler'/></Set>
 *       <Set name='IdleTimeoutMs'>5000</Set>
 *     </New>
 *   </Set>
 * 
*/ public class IdleTimeoutHandler extends Handler.Wrapper { private long _idleTimeoutMs = 1000; private boolean _applyToAsync = false; public IdleTimeoutHandler() { this(null); } public IdleTimeoutHandler(Handler handler) { super(handler); } public boolean isApplyToAsync() { return _applyToAsync; } /** * Should the adjusted idle time be maintained for asynchronous requests * * @param applyToAsync true if alternate idle timeout is applied to asynchronous requests */ public void setApplyToAsync(boolean applyToAsync) { _applyToAsync = applyToAsync; } public long getIdleTimeoutMs() { return _idleTimeoutMs; } /** * @param idleTimeoutMs The idle timeout in MS to apply while dispatched or async */ public void setIdleTimeoutMs(long idleTimeoutMs) { this._idleTimeoutMs = idleTimeoutMs; } @Override public boolean handle(Request request, Response response, Callback callback) throws Exception { long idleTimeout = 0; // TODO rq.getHttpChannel().getIdleTimeout(); // TODO rq.getHttpChannel().setIdleTimeout(_idleTimeoutMs); return super.handle(request, response, Callback.from(callback, () -> { // TODO rq.getHttpChannel().setIdleTimeout(idleTimeout) })); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy