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

com.aliyun.openservices.loghub.client.FetchedLogGroup 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 FetchedLogGroup {
    private final int shardId;
    private final List fetchedData;
    private final String nextCursor;
    private final String cursor;

    public FetchedLogGroup(int shardId, List fetchedData, String nextCursor, String cursor) {
        this.shardId = shardId;
        this.fetchedData = fetchedData;
        this.nextCursor = nextCursor;
        this.cursor = cursor;
    }

    public int getShardId() {
        return shardId;
    }

    public List getFetchedData() {
        return fetchedData;
    }

    public String getNextCursor() {
        return nextCursor;
    }

    public String getCursor() {
        return cursor;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy