![JAR search and dependency download from the Maven repository](/logo.png)
org.ggp.base.server.threads.AbortRequestThread Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alloy-ggp-base Show documentation
Show all versions of alloy-ggp-base Show documentation
A modified version of the GGP-Base library for Alloy.
The newest version!
package org.ggp.base.server.threads;
import org.ggp.base.server.GameServer;
import org.ggp.base.server.request.RequestBuilder;
import org.ggp.base.util.match.Match;
import org.ggp.base.util.statemachine.Role;
public final class AbortRequestThread extends RequestThread
{
public AbortRequestThread(GameServer gameServer, Match match, Role role, String host, int port, String playerName)
{
super(gameServer, role, host, port, playerName, 1000, RequestBuilder.getAbortRequest(match.getMatchId()));
}
@Override
protected void handleResponse(String response) {
;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy