com.codedisaster.steamworks.SteamHTTPCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of steamworks4j Show documentation
Show all versions of steamworks4j Show documentation
Java wrapper to access the Steamworks API.
package com.codedisaster.steamworks;
public interface SteamHTTPCallback {
void onHTTPRequestCompleted(SteamHTTPRequestHandle request,
long contextValue,
boolean requestSuccessful,
SteamHTTP.HTTPStatusCode statusCode,
int bodySize);
void onHTTPRequestHeadersReceived(SteamHTTPRequestHandle request,
long contextValue);
void onHTTPRequestDataReceived(SteamHTTPRequestHandle request,
long contextValue,
int offset,
int bytesReceived);
}