pluginapi/src/main/java/xyz/etztech/core/web/ICallback.java

14 lines
227 B
Java
Raw Normal View History

2018-09-14 03:34:28 +00:00
package xyz.etztech.core.web;
/**
* An interface for Core async callbacks
*/
2018-09-14 03:34:28 +00:00
public interface ICallback {
/**
* @param httpResponse The response from the async call
*/
2018-09-14 03:34:28 +00:00
void invoke(String httpResponse);
}