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

com.aliyun.datahub.model.GetBlobRecordsResult Maven / Gradle / Ivy

There is a newer version: 2.25.6
Show newest version
package com.aliyun.datahub.model;

import java.util.List;

/**
 * 
 * Represents the output for GetBlobRecords.
 * 
 */
public class GetBlobRecordsResult {

    /**
     * 
     * The next position in the shard from which to start sequentially reading
     * data records.
     * 
     */
    private String nextCursor;
    /**
     * The start sequence of the first record.
     * If no records in result object, then startSeq is -1.
     */
    private long startSeq;
    /**
     * 
     * The data records retrieved from the shard.
     * 
     */
    private List records;

    public List getRecords() {
        return records;
    }

    public void setRecords(List records) {
        this.records = records;
    }

    public String getNextCursor() {
        return nextCursor;
    }

    public void setNextCursor(String nextCursor) {
        this.nextCursor = nextCursor;
    }

    public int getRecordCount() {
        return records == null ? 0 : records.size();
    }
    
    public long getStartSeq() {
        return startSeq;
    }

    public void setStartSeq(long startSeq) {
        this.startSeq = startSeq;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy