Uses of Class
page.codeberg.friedolyn.util.Task.TaskListener
Packages that use Task.TaskListener
Package
Description
-
Uses of Task.TaskListener in page.codeberg.friedolyn.client
Fields in page.codeberg.friedolyn.client with type parameters of type Task.TaskListenerModifier and TypeFieldDescriptionprivate final @NonNull HashSet<Task.TaskListener<String>> Client.FetchClearname.LISTENERSThe subscribers that will be notified about any status changes and progress updates of this task.private final @NonNull HashSet<Task.TaskListener<jakarta.mail.internet.InternetAddress>> Client.FetchEmailAddress.LISTENERSThe subscribers that will be notified about any status changes and progress updates of this task.private final @NonNull HashSet<Task.TaskListener<String>> Client.FetchPersonalData.LISTENERSThe subscribers that will be notified about any status changes and progress updates of this task.private final @NonNull HashSet<Task.TaskListener<Boolean>> Client.Login.LISTENERSThe subscribers that will be notified about any status changes and progress updates of this task.private final @NonNull HashSet<Task.TaskListener<String>> HeadlessBrowser.FetchClearname.LISTENERSThe subscribers interested in the progress and status updates of this task.private final @NonNull HashSet<Task.TaskListener<jakarta.mail.internet.InternetAddress>> HeadlessBrowser.FetchEmailAddress.LISTENERSThe subscribers interested in the progress and status updates of this task.private final @NonNull HashSet<Task.TaskListener<Boolean>> HeadlessBrowser.Login.LISTENERSThe subscribers interested in the progress and status updates of this task.Methods in page.codeberg.friedolyn.client with parameters of type Task.TaskListenerModifier and TypeMethodDescriptionvoidClient.FetchClearname.registerListener(@NonNull Task.TaskListener<String> listener) Adds a subscriber that is interested in status updates of the action's progress.voidClient.FetchEmailAddress.registerListener(@NonNull Task.TaskListener<jakarta.mail.internet.InternetAddress> taskListener) Adds a subscriber that is interested in status updates of the action's progress.voidClient.FetchPersonalData.registerListener(@NonNull Task.TaskListener<String> listener) Adds a subscriber that is interested in status updates of the action's progress.voidClient.Login.registerListener(@NonNull Task.TaskListener<Boolean> listener) Adds a subscriber that is interested in status updates of the action's progress.voidHeadlessBrowser.FetchClearname.registerListener(@NonNull Task.TaskListener<String> taskListener) Adds a subscriber that is interested in status updates of the action's progress.voidHeadlessBrowser.FetchEmailAddress.registerListener(@NonNull Task.TaskListener<jakarta.mail.internet.InternetAddress> taskListener) Adds a subscriber that is interested in status updates of the action's progress.voidHeadlessBrowser.Login.registerListener(@NonNull Task.TaskListener<Boolean> taskListener) Adds a subscriber that is interested in status updates of the action's progress.booleanClient.FetchClearname.removeListener(@NonNull Task.TaskListener<String> listener) Removes a subscriber that was previously added to receive status updates of the action's progress.booleanClient.FetchEmailAddress.removeListener(@NonNull Task.TaskListener<jakarta.mail.internet.InternetAddress> taskListener) Removes a subscriber that was previously added to receive status updates of the action's progress.booleanClient.FetchPersonalData.removeListener(@NonNull Task.TaskListener<String> listener) Removes a subscriber that was previously added to receive status updates of the action's progress.booleanClient.Login.removeListener(@NonNull Task.TaskListener<Boolean> listener) Removes a subscriber that was previously added to receive status updates of the action's progress.booleanHeadlessBrowser.FetchClearname.removeListener(@NonNull Task.TaskListener<String> taskListener) Removes a subscriber that was previously added to receive status updates of the action's progress.booleanHeadlessBrowser.FetchEmailAddress.removeListener(@NonNull Task.TaskListener<jakarta.mail.internet.InternetAddress> taskListener) Removes a subscriber that was previously added to receive status updates of the action's progress.booleanHeadlessBrowser.Login.removeListener(@NonNull Task.TaskListener<Boolean> taskListener) Removes a subscriber that was previously added to receive status updates of the action's progress. -
Uses of Task.TaskListener in page.codeberg.friedolyn.crypto
Fields in page.codeberg.friedolyn.crypto with type parameters of type Task.TaskListenerModifier and TypeFieldDescriptionprivate final HashSet<Task.TaskListener<KeePassXC.KeePassEntry>> KeePassXC.AssociateAndLoginTask.LISTENERSThe subscribers that will be notified about any status changes and progress updates of this task.Methods in page.codeberg.friedolyn.crypto with parameters of type Task.TaskListenerModifier and TypeMethodDescriptionvoidKeePassXC.AssociateAndLoginTask.registerListener(@NonNull Task.TaskListener<KeePassXC.KeePassEntry> taskListener) Adds a subscriber that is interested in status updates of the action's progress.booleanKeePassXC.AssociateAndLoginTask.removeListener(@NonNull Task.TaskListener<KeePassXC.KeePassEntry> taskListener) Removes a subscriber that was previously added to receive status updates of the action's progress. -
Uses of Task.TaskListener in page.codeberg.friedolyn.gui.controllers
Fields in page.codeberg.friedolyn.gui.controllers with type parameters of type Task.TaskListenerModifier and TypeFieldDescriptionprivate final @NonNull HashSet<Task.TaskListener<ContactMethods>> ContactController.OpenContactReplyDialogTask.LISTENERSThe subscribers that will be notified about any status changes and progress updates of this task.private final @NonNull HashSet<Task.TaskListener<Boolean>> ContactController.SubmitTask.LISTENERSThe subscribers that will be notified about any status changes and progress updates of this task.Methods in page.codeberg.friedolyn.gui.controllers with parameters of type Task.TaskListenerModifier and TypeMethodDescriptionvoidContactController.OpenContactReplyDialogTask.registerListener(@NonNull Task.TaskListener<ContactMethods> listener) Adds a subscriber that is interested in status updates of the action's progress.voidContactController.SubmitTask.registerListener(@NonNull Task.TaskListener<Boolean> listener) Adds a subscriber that is interested in status updates of the action's progress.booleanContactController.OpenContactReplyDialogTask.removeListener(@NonNull Task.TaskListener<ContactMethods> listener) Removes a subscriber that was previously added to receive status updates of the action's progress.booleanContactController.SubmitTask.removeListener(@NonNull Task.TaskListener<Boolean> listener) Removes a subscriber that was previously added to receive status updates of the action's progress. -
Uses of Task.TaskListener in page.codeberg.friedolyn.util
Methods in page.codeberg.friedolyn.util that return Task.TaskListenerModifier and TypeMethodDescriptionstatic <ResultType>
@NonNull Task.TaskListener<ResultType> Task.TaskListener.from(@NonNull Task.CancelListener cancelListener) Converts aTask.CancelListenerto aTask.TaskListener.static <ResultType>
@NonNull Task.TaskListener<ResultType> Task.TaskListener.from(@NonNull Task.FailureListener<ResultType> failureListener) Converts aTask.FailureListenerto aTask.TaskListener.static <ResultType>
@NonNull Task.TaskListener<ResultType> Task.TaskListener.from(@NonNull Task.ProgressListener progressListener) Converts aTask.ProgressListenerto aTask.TaskListener.static <ResultType>
@NonNull Task.TaskListener<ResultType> Task.TaskListener.from(@NonNull Task.SuccessListener<ResultType> successListener) Converts aTask.SuccessListenerto aTask.TaskListener.Methods in page.codeberg.friedolyn.util with parameters of type Task.TaskListenerModifier and TypeMethodDescriptionabstract voidTask.registerListener(@NonNull Task.TaskListener<ResultType> taskListener) Adds a subscriber that is interested in status updates of the action's progress.abstract booleanTask.removeListener(@NonNull Task.TaskListener<ResultType> taskListener) Removes a subscriber that was previously added to receive status updates of the action's progress.