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

com.aliyun.openservices.loghub.client.FetchTaskResult Maven / Gradle / Ivy

There is a newer version: 0.6.7
Show newest version
package com.aliyun.openservices.loghub.client;

import com.aliyun.openservices.log.common.LogGroupData;

import java.util.List;

public class FetchTaskResult extends TaskResult {

    private List fetchData;
    private String cursor;
    private String nextCursor;
    private int rawSize;
    private long rawSizeBeforeQuery;
    private int rawLogGroupCountBeforeQuery;

    public FetchTaskResult(List fetchData, String cursor, String nextCursor, int rawSize, long rawSizeBeforeQuery, int rawLogGroupCountBeforeQuery) {
        super(null);
        this.fetchData = fetchData;
        this.cursor = cursor;
        this.nextCursor = nextCursor;
        this.rawSize = rawSize;
        this.rawSizeBeforeQuery = rawSizeBeforeQuery;
        this.rawLogGroupCountBeforeQuery = rawLogGroupCountBeforeQuery;
    }

    public List getFetchedData() {
        return fetchData;
    }

    public String getCursor() {
        return cursor;
    }

    public String getNextCursor() {
        return nextCursor;
    }

    public int getRawSize() {
        return rawSize;
    }

    public long getRawSizeBeforeQuery() {
        return rawSizeBeforeQuery;
    }
    public int getRawLogGroupCountBeforeQuery() {
        return rawLogGroupCountBeforeQuery;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy