com.exaroton.api.ws.subscriber.ServerStatusSubscriber Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
The official exaroton java library
package com.exaroton.api.ws.subscriber;
import com.exaroton.api.server.Server;
public abstract class ServerStatusSubscriber extends Subscriber {
/**
* handle status update
* @param oldServer old server status
* @param newServer new server status
*/
public abstract void statusUpdate(Server oldServer, Server newServer);
}