Graph database Analysis of the Steam Network
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

28 lines
477 B

package net.jrtechs.www.webCrawler;
import java.util.Calendar;
/**
* @author Jeffery Russell
*/
public class APIThrottler
{
public int totalqueries;
private long lastQuery;
boolean queryAvailable()
{
return true;
}
public long getCurrentTimeInMS()
{
Calendar calendar = Calendar.getInstance();
//Returns current time in millis
long timeMilli2 = calendar.getTimeInMillis();
return timeMilli2;
}
}