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

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

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

import lombok.AllArgsConstructor;

import java.util.List;

/**
 * AckRequestImpl is the implementation of AckRequest.
 */
@AllArgsConstructor
class AckRequestImpl implements AckRequest {
    private final List offsets;

    @Override
    public List getOffsets() {
        return this.offsets;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy