package com.fasterxml.jackson.core.async;

import java.io.IOException;
import java.nio.ByteBuffer;

NonBlockingInputFeeder implementation used when feeding data as ByteBuffer contents.
Since:2.9
/** * {@link NonBlockingInputFeeder} implementation used when feeding data * as {@link ByteBuffer} contents. * * @since 2.9 */
public interface ByteBufferFeeder extends NonBlockingInputFeeder {
Method that can be called to feed more data, if (and only if) NonBlockingInputFeeder.needMoreInput returns true.
Params:
  • buffer – Buffer that contains additional input to read
Throws:
  • IOException – if the state is such that this method should not be called (has not yet consumed existing input data, or has been marked as closed)
/** * Method that can be called to feed more data, if (and only if) * {@link NonBlockingInputFeeder#needMoreInput} returns true. * * @param buffer Buffer that contains additional input to read * * @throws IOException if the state is such that this method should not be called * (has not yet consumed existing input data, or has been marked as closed) */
public void feedInput(ByteBuffer buffer) throws IOException; }