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

io.numaproj.numaflow.sourcer.ReadRequest Maven / Gradle / Ivy

The newest version!
package io.numaproj.numaflow.sourcer;

import java.time.Duration;

/**
 * ReadRequest request for reading messages from source.
 */
public interface ReadRequest {
    /**
     * @return the number of messages to be read
     */
    long getCount();

    /**
     * @return the timeout for reading messages
     */
    Duration getTimeout();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy