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

org.eclipse.jetty.http2.RateControl Maven / Gradle / Ivy

The 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.http2;

import org.eclipse.jetty.io.EndPoint;

/**
 * Controls rate of events via {@link #onEvent(Object)}.
 */
public interface RateControl
{
    public static final RateControl NO_RATE_CONTROL = event -> true;

    /**
     * 

Applications should call this method when they want to signal an * event that is subject to rate control.

*

Implementations should return true if the event does not exceed * the desired rate, or false to signal that the event exceeded the * desired rate.

* * @param event the event subject to rate control. * @return true IFF the rate is within limits */ public boolean onEvent(Object event); /** * Factory to create RateControl instances. */ public interface Factory { /** * @return a new RateControl instance for the given EndPoint * @param endPoint the EndPoint for which the RateControl is created */ public default RateControl newRateControl(EndPoint endPoint) { return NO_RATE_CONTROL; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy