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

com.codedisaster.steamworks.SteamHTTPCallback Maven / Gradle / Ivy

There is a newer version: 1.9.0
Show newest version
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);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy