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

io.rsocket.plugins.LimitRateInterceptor Maven / Gradle / Ivy

/*
 * Copyright 2015-2020 the original author or authors.
 *
 * 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.rsocket.plugins;

import io.rsocket.Payload;
import io.rsocket.RSocket;
import io.rsocket.util.RSocketProxy;
import org.reactivestreams.Publisher;
import reactor.core.publisher.Flux;

/**
 * Interceptor that adds {@link Flux#limitRate(int, int)} to publishers of outbound streams that
 * breaks down or aggregates demand values from the remote end (i.e. {@code REQUEST_N} frames) into
 * batches of a uniform size. For example the remote may request {@code Long.MAXVALUE} or it may
 * start requesting one at a time, in both cases with the limit set to 64, the publisher will see a
 * demand of 64 to start and subsequent batches of 48, i.e. continuing to prefetch and refill an
 * internal queue when it falls to 75% full. The high and low tide marks are configurable.
 *
 * 

See static factory methods to create an instance for a requester or for a responder. * *

Note: keep in mind that the {@code limitRate} operator always uses requests * the same request values, even if the remote requests less than the limit. For example given a * limit of 64, if the remote requests 4, 64 will be prefetched of which 4 will be sent and 60 will * be cached. * * @since 1.0 */ public class LimitRateInterceptor implements RSocketInterceptor { private final int highTide; private final int lowTide; private final boolean requesterProxy; private LimitRateInterceptor(int highTide, int lowTide, boolean requesterProxy) { this.highTide = highTide; this.lowTide = lowTide; this.requesterProxy = requesterProxy; } @Override public RSocket apply(RSocket socket) { return requesterProxy ? new RequesterProxy(socket) : new ResponderProxy(socket); } /** * Create an interceptor for an {@code RSocket} that handles request-stream and/or request-channel * interactions. * * @param prefetchRate the prefetch rate to pass to {@link Flux#limitRate(int)} * @return the created interceptor */ public static LimitRateInterceptor forResponder(int prefetchRate) { return forResponder(prefetchRate, prefetchRate); } /** * Create an interceptor for an {@code RSocket} that handles request-stream and/or request-channel * interactions with more control over the overall prefetch rate and replenish threshold. * * @param highTide the high tide value to pass to {@link Flux#limitRate(int, int)} * @param lowTide the low tide value to pass to {@link Flux#limitRate(int, int)} * @return the created interceptor */ public static LimitRateInterceptor forResponder(int highTide, int lowTide) { return new LimitRateInterceptor(highTide, lowTide, false); } /** * Create an interceptor for an {@code RSocket} that performs request-channel interactions. * * @param prefetchRate the prefetch rate to pass to {@link Flux#limitRate(int)} * @return the created interceptor */ public static LimitRateInterceptor forRequester(int prefetchRate) { return forRequester(prefetchRate, prefetchRate); } /** * Create an interceptor for an {@code RSocket} that performs request-channel interactions with * more control over the overall prefetch rate and replenish threshold. * * @param highTide the high tide value to pass to {@link Flux#limitRate(int, int)} * @param lowTide the low tide value to pass to {@link Flux#limitRate(int, int)} * @return the created interceptor */ public static LimitRateInterceptor forRequester(int highTide, int lowTide) { return new LimitRateInterceptor(highTide, lowTide, true); } /** Responder side proxy, limits response streams. */ private class ResponderProxy extends RSocketProxy { ResponderProxy(RSocket source) { super(source); } @Override public Flux requestStream(Payload payload) { return super.requestStream(payload).limitRate(highTide, lowTide); } @Override public Flux requestChannel(Publisher payloads) { return super.requestChannel(payloads).limitRate(highTide, lowTide); } } /** Requester side proxy, limits channel request stream. */ private class RequesterProxy extends RSocketProxy { RequesterProxy(RSocket source) { super(source); } @Override public Flux requestChannel(Publisher payloads) { return super.requestChannel(Flux.from(payloads).limitRate(highTide, lowTide)); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy