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

com.taosdata.jdbc.ws.entity.FetchReq Maven / Gradle / Ivy

package com.taosdata.jdbc.ws.entity;

public class FetchReq extends Payload {
    private long id;

    public FetchReq(long reqId, long id) {
        super(reqId);
        this.id = id;
    }

    public long getId() {
        return id;
    }

    public void setId(long id) {
        this.id = id;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy