io.zbus.rpc.Response Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zbus Show documentation
Show all versions of zbus Show documentation
a lightweight yet powerful MQ and RPC to build service bus
package io.zbus.rpc;
public class Response {
private Object result;
private Object error; //if not null, means error happened, otherwise result is OK
public Object getResult() {
return result;
}
public void setResult(Object result) {
this.result = result;
}
public Object getError(){
return this.error;
}
public void setError(Object error){
this.error = error;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy