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

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

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

import java.security.InvalidParameterException;
import java.util.Map;

public class CommitOffsetRequest {
	private String project;
	private String topic;
	private String subId;
    private Map offsetCtxMap;

    public CommitOffsetRequest(Map offsetCtxMap) {
        if (offsetCtxMap == null 
        		|| offsetCtxMap.isEmpty()) {
            throw new InvalidParameterException("offset context is null or empty");
        }

        this.offsetCtxMap = offsetCtxMap;
        OffsetContext offsetCtx = offsetCtxMap.values().iterator().next();
        this.project = offsetCtx.getProject();
        this.topic = offsetCtx.getTopic();
        this.subId = offsetCtx.getSubId();
    }

    public Map getOffsetCtxMap() {
        return offsetCtxMap;
    }
    
    public String getProject() {
    	return project;
    }
    
    public String getTopic() {
    	return topic;
    }
    
    public String getSubId() {
    	return subId;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy