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.LISTENERS
The 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.LISTENERS
The subscribers that will be notified about any status changes and progress updates of this task.private final @NonNull HashSet
<Task.TaskListener<String>> Client.FetchPersonalData.LISTENERS
The subscribers that will be notified about any status changes and progress updates of this task.private final @NonNull HashSet
<Task.TaskListener<Boolean>> Client.Login.LISTENERS
The subscribers that will be notified about any status changes and progress updates of this task.private final @NonNull HashSet
<Task.TaskListener<String>> HeadlessBrowser.FetchClearname.LISTENERS
The subscribers interested in the progress and status updates of this task.private final @NonNull HashSet
<Task.TaskListener<jakarta.mail.internet.InternetAddress>> HeadlessBrowser.FetchEmailAddress.LISTENERS
The subscribers interested in the progress and status updates of this task.private final @NonNull HashSet
<Task.TaskListener<Boolean>> HeadlessBrowser.Login.LISTENERS
The subscribers interested in the progress and status updates of this task.Methods in page.codeberg.friedolyn.client with parameters of type Task.TaskListenerModifier and TypeMethodDescriptionvoid
Client.FetchClearname.registerListener
(@NonNull Task.TaskListener<String> listener) Adds a subscriber that is interested in status updates of the action's progress.void
Client.FetchEmailAddress.registerListener
(@NonNull Task.TaskListener<jakarta.mail.internet.InternetAddress> taskListener) Adds a subscriber that is interested in status updates of the action's progress.void
Client.FetchPersonalData.registerListener
(@NonNull Task.TaskListener<String> listener) Adds a subscriber that is interested in status updates of the action's progress.void
Client.Login.registerListener
(@NonNull Task.TaskListener<Boolean> listener) Adds a subscriber that is interested in status updates of the action's progress.void
HeadlessBrowser.FetchClearname.registerListener
(@NonNull Task.TaskListener<String> taskListener) Adds a subscriber that is interested in status updates of the action's progress.void
HeadlessBrowser.FetchEmailAddress.registerListener
(@NonNull Task.TaskListener<jakarta.mail.internet.InternetAddress> taskListener) Adds a subscriber that is interested in status updates of the action's progress.void
HeadlessBrowser.Login.registerListener
(@NonNull Task.TaskListener<Boolean> taskListener) Adds a subscriber that is interested in status updates of the action's progress.boolean
Client.FetchClearname.removeListener
(@NonNull Task.TaskListener<String> listener) Removes a subscriber that was previously added to receive status updates of the action's progress.boolean
Client.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.boolean
Client.FetchPersonalData.removeListener
(@NonNull Task.TaskListener<String> listener) Removes a subscriber that was previously added to receive status updates of the action's progress.boolean
Client.Login.removeListener
(@NonNull Task.TaskListener<Boolean> listener) Removes a subscriber that was previously added to receive status updates of the action's progress.boolean
HeadlessBrowser.FetchClearname.removeListener
(@NonNull Task.TaskListener<String> taskListener) Removes a subscriber that was previously added to receive status updates of the action's progress.boolean
HeadlessBrowser.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.boolean
HeadlessBrowser.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.LISTENERS
The 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 TypeMethodDescriptionvoid
KeePassXC.AssociateAndLoginTask.registerListener
(@NonNull Task.TaskListener<KeePassXC.KeePassEntry> taskListener) Adds a subscriber that is interested in status updates of the action's progress.boolean
KeePassXC.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.LISTENERS
The subscribers that will be notified about any status changes and progress updates of this task.private final @NonNull HashSet
<Task.TaskListener<Boolean>> ContactController.SubmitTask.LISTENERS
The 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 TypeMethodDescriptionvoid
ContactController.OpenContactReplyDialogTask.registerListener
(@NonNull Task.TaskListener<ContactMethods> listener) Adds a subscriber that is interested in status updates of the action's progress.void
ContactController.SubmitTask.registerListener
(@NonNull Task.TaskListener<Boolean> listener) Adds a subscriber that is interested in status updates of the action's progress.boolean
ContactController.OpenContactReplyDialogTask.removeListener
(@NonNull Task.TaskListener<ContactMethods> listener) Removes a subscriber that was previously added to receive status updates of the action's progress.boolean
ContactController.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.CancelListener
to aTask.TaskListener
.static <ResultType>
@NonNull Task.TaskListener<ResultType> Task.TaskListener.from
(@NonNull Task.FailureListener<ResultType> failureListener) Converts aTask.FailureListener
to aTask.TaskListener
.static <ResultType>
@NonNull Task.TaskListener<ResultType> Task.TaskListener.from
(@NonNull Task.ProgressListener progressListener) Converts aTask.ProgressListener
to aTask.TaskListener
.static <ResultType>
@NonNull Task.TaskListener<ResultType> Task.TaskListener.from
(@NonNull Task.SuccessListener<ResultType> successListener) Converts aTask.SuccessListener
to aTask.TaskListener
.Methods in page.codeberg.friedolyn.util with parameters of type Task.TaskListenerModifier and TypeMethodDescriptionabstract void
Task.registerListener
(@NonNull Task.TaskListener<ResultType> taskListener) Adds a subscriber that is interested in status updates of the action's progress.abstract boolean
Task.removeListener
(@NonNull Task.TaskListener<ResultType> taskListener) Removes a subscriber that was previously added to receive status updates of the action's progress.