Class Task<ResultType>

java.lang.Object
page.codeberg.friedolyn.util.Task<ResultType>
Type Parameters:
ResultType - The class of the end product that the action executed generates.
All Implemented Interfaces:
Runnable
Direct Known Subclasses:
Client.FetchPersonalData, ContactController.OpenContactReplyDialogTask, ContactController.SubmitTask, FriedolinClient.FetchClearname, FriedolinClient.FetchEmailAddress, FriedolinClient.Login, KeePassXC.AssociateAndLoginTask

public abstract class Task<ResultType> extends Object implements Runnable
Represents an action that is executed asynchronously and that can only be run once. Use a Task.TaskListener to subscribe to status updates of the action's progress.
See Also: