Citizens2/main/java/net/citizensnpcs/npc/profile/ProfileFetchHandler.java

15 lines
350 B
Java

package net.citizensnpcs.npc.profile;
/**
* Interface for a subscriber of the results of a profile fetch.
*/
public interface ProfileFetchHandler {
/**
* Invoked when a result for a profile is ready.
*
* @param request
* The profile request that was handled.
*/
void onResult(ProfileRequest request);
}