
io.gs2.core.model.AsyncResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gs2-java-sdk Show documentation
Show all versions of gs2-java-sdk Show documentation
Game Server Services SDK for Java
The newest version!
package io.gs2.core.model;
import io.gs2.core.exception.Gs2Exception;
public class AsyncResult {
private T result;
private Gs2Exception error;
public AsyncResult(T result, Gs2Exception error) {
this.result = result;
this.error = error;
}
public T getResult() {
return result;
}
public Gs2Exception getError() {
return error;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy