Package net.md_5.bungee.api
Interface Callback<V>
-
- Type Parameters:
V
- the type of result
public interface Callback<V>
Represents a method which may be called once a result has been computed asynchronously.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
done(V result, Throwable error)
Called when the result is done.
-