/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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 org.apache.flink.runtime.io.network.buffer; import org.apache.flink.runtime.util.event.EventListener; import java.io.IOException; /** * A buffer provider to request buffers from in a synchronous or asynchronous fashion. * * <p> The data producing side (result partition writers) request buffers in a synchronous fashion, * whereas the input side requests asynchronously. */ public interface BufferProvider { /** * Returns a {@link Buffer} instance from the buffer provider, if one is available. * <p> * Returns <code>null</code> if no buffer is available or the buffer provider has been destroyed. */ Buffer requestBuffer() throws IOException; /** * Returns a {@link Buffer} instance from the buffer provider. * <p> * If there is no buffer available, the call will block until one becomes available again or the * buffer provider has been destroyed. */ Buffer requestBufferBlocking() throws IOException, InterruptedException; /** * Adds a buffer availability listener to the buffer provider. * <p> * The operation fails with return value <code>false</code>, when there is a buffer available or * the buffer provider has been destroyed. * <p> * If the buffer provider gets destroyed while the listener is registered the listener will be * notified with a <code>null</code> value. */ boolean addListener(EventListener<Buffer> listener); /** * Returns whether the buffer provider has been destroyed. */ boolean isDestroyed(); /** * Returns the size of the underlying memory segments. This is the maximum size a {@link Buffer} * instance can have. */ int getMemorySegmentSize(); }