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

org.apache.rocketmq.shaded.io.grpc.HasByteBuffer Maven / Gradle / Ivy

There is a newer version: 5.0.7
Show newest version
/*
 * Copyright 2020 The gRPC 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 org.apache.rocketmq.shaded.io.grpc;

import java.nio.ByteBuffer;
import javax.annotation.Nullable;

/**
 * Extension to an {@link java.io.InputStream} whose content can be accessed as {@link
 * ByteBuffer}s.
 *
 * 

This can be used for optimizing the case for the consumer of a {@link ByteBuffer}-backed * input stream supports efficient reading from {@link ByteBuffer}s directly. This turns the reader * interface from an {@link java.io.InputStream} to {@link ByteBuffer}s, without copying the * content to a byte array and read from it. */ @ExperimentalApi("https://github.com/grpc/grpc-java/issues/7387") public interface HasByteBuffer { /** * Indicates whether or not {@link #getByteBuffer} operation is supported. */ boolean byteBufferSupported(); /** * Gets a {@link ByteBuffer} containing some bytes of the content next to be read, or {@code * null} if has reached end of the content. The number of bytes contained in the returned buffer * is implementation specific. Calling this method does not change the position of the input * stream. The returned buffer's content should not be modified, but the position, limit, and * mark may be changed. Operations for changing the position, limit, and mark of the returned * buffer does not affect the position, limit, and mark of this input stream. This is an optional * method, so callers should first check {@link #byteBufferSupported}. * * @throws UnsupportedOperationException if this operation is not supported. */ @Nullable ByteBuffer getByteBuffer(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy