com.clickzetta.platform.client.message.ResponseMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickzetta-java Show documentation
Show all versions of clickzetta-java Show documentation
The java SDK for clickzetta's Lakehouse
package com.clickzetta.platform.client.message;
import com.google.protobuf.AbstractMessage;
public abstract class ResponseMessage {
public T t;
public ResponseMessage(T t) {
this.t = t;
}
public abstract long getRequestId();
public abstract long getNumRows();
public abstract int getStatusCode();
public T getOriginal() {
return t;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy