Skip navigation links
A C D F G I L M O P R S T V 

A

AbstractTaskContainer - Class in org.wicketstuff.async.task
A serializable representation of a task that is hooked into a task manager.
AbstractTaskContainer(String) - Constructor for class org.wicketstuff.async.task.AbstractTaskContainer
 
addRefreshDependant(Component) - Method in class org.wicketstuff.async.components.ProgressButton
Allows to add a component which is rerendered every time the button is rerendered.

C

cancel() - Method in class org.wicketstuff.async.task.AbstractTaskContainer
 
cleanUp() - Method in class org.wicketstuff.async.task.DefaultTaskManager
 
cleanUp() - Method in interface org.wicketstuff.async.task.ITaskManager
 

D

DefaultTaskManager - Class in org.wicketstuff.async.task
 
DefaultTaskManager() - Constructor for class org.wicketstuff.async.task.DefaultTaskManager
 
DefaultTaskManagerHook - Class in org.wicketstuff.async.task
 
DefaultTaskManagerHook(String) - Constructor for class org.wicketstuff.async.task.DefaultTaskManagerHook
 
detach() - Method in class org.wicketstuff.async.task.AbstractTaskContainer
 

F

findHookForId(String) - Method in class org.wicketstuff.async.task.DefaultTaskManager
 

G

getContainerOrFail(String) - Method in class org.wicketstuff.async.task.DefaultTaskManager
 
getContainerOrFail(String) - Method in interface org.wicketstuff.async.task.ITaskManager
 
getDefaultWidth() - Method in class org.wicketstuff.async.components.ProgressBar
Determines the default width of the progress bar when there is no information available.
getExecutionError() - Method in class org.wicketstuff.async.task.AbstractTaskContainer
 
getFuture() - Method in class org.wicketstuff.async.task.DefaultTaskManagerHook
 
getFuture() - Method in interface org.wicketstuff.async.task.ITaskManagerHook
 
getId() - Method in class org.wicketstuff.async.task.AbstractTaskContainer
 
getId() - Method in class org.wicketstuff.async.task.DefaultTaskManagerHook
 
getId() - Method in interface org.wicketstuff.async.task.ITaskManagerHook
 
getInstance() - Static method in class org.wicketstuff.async.task.DefaultTaskManager
 
getProgress() - Method in class org.wicketstuff.async.task.AbstractTaskContainer
 
getProgress() - Method in interface org.wicketstuff.async.task.IProgressObservableRunnable
The progress of the current task.
getProgressMessage() - Method in class org.wicketstuff.async.task.AbstractTaskContainer
 
getProgressMessage() - Method in interface org.wicketstuff.async.task.IProgressObservableRunnable
Returns a custom message about the progress.
getRunnable() - Method in interface org.wicketstuff.async.components.IRunnableFactory
Returns the runnable to be processed by a ProgressButton.
getRunnable() - Method in class org.wicketstuff.async.task.DefaultTaskManagerHook
 
getRunnable() - Method in interface org.wicketstuff.async.task.ITaskManagerHook
 
getTaskContainer() - Method in class org.wicketstuff.async.components.ProgressButton
 
getTaskContainerModel() - Method in class org.wicketstuff.async.components.ProgressButton
 

I

InteractionState - Enum in org.wicketstuff.async.components
Describes the interaction state of a task.
IProgressObservableRunnable - Interface in org.wicketstuff.async.task
A future implementing this interface allows to communicate its progress to the a ProgressBar.
IRunnableFactory - Interface in org.wicketstuff.async.components
Implementing classes can supply Runnable instances to a ProgressButton.
isAllowInterrupt() - Method in class org.wicketstuff.async.components.ProgressButton
This method can be overridden to implement a custom behavior for interrupt tasks.
isAllowRestart() - Method in class org.wicketstuff.async.components.ProgressButton
This method can be overridden to implement a custom behavior for restarting tasks.
isAllowStart() - Method in class org.wicketstuff.async.components.ProgressButton
This method can be overridden to implement a custom behavior for starting tasks.
isCancelled() - Method in class org.wicketstuff.async.task.AbstractTaskContainer
 
isComplete() - Method in class org.wicketstuff.async.task.AbstractTaskContainer
 
isEnabled() - Method in class org.wicketstuff.async.components.ProgressButton
 
isFailed() - Method in class org.wicketstuff.async.task.AbstractTaskContainer
 
isRunning() - Method in class org.wicketstuff.async.task.AbstractTaskContainer
 
isShowPercentage() - Method in class org.wicketstuff.async.components.ProgressBar
Determines if the task progress in percentage is showed within the bar.
isSubmitted() - Method in class org.wicketstuff.async.task.AbstractTaskContainer
 
ITaskManager - Interface in org.wicketstuff.async.task
A task manager for managing running tasks.
ITaskManagerHook - Interface in org.wicketstuff.async.task
A hook into a manager instance.

L

load() - Method in class org.wicketstuff.async.task.AbstractTaskContainer
 

M

makeBar(String) - Method in class org.wicketstuff.async.components.ProgressBar
 
makeContainer(long, TimeUnit) - Method in class org.wicketstuff.async.task.DefaultTaskManager
 
makeContainer(long, TimeUnit) - Method in interface org.wicketstuff.async.task.ITaskManager
 
makeOrRenewContainer(String, long, TimeUnit) - Method in class org.wicketstuff.async.task.DefaultTaskManager
 
makeOrRenewContainer(String, long, TimeUnit) - Method in interface org.wicketstuff.async.task.ITaskManager
 
makeTaskContainer(String) - Method in class org.wicketstuff.async.task.DefaultTaskManager
 
makeTaskManagerHook(String) - Method in class org.wicketstuff.async.task.DefaultTaskManager
 
makeWrapper(String) - Method in class org.wicketstuff.async.components.ProgressBar
 

O

onSubmit(Optional<AjaxRequestTarget>) - Method in class org.wicketstuff.async.components.ProgressButton
 
onTaskCancel(Optional<AjaxRequestTarget>) - Method in class org.wicketstuff.async.components.ProgressButton
Override to trigger a custom action whenever a task was canceled and halted.
onTaskError(Optional<AjaxRequestTarget>) - Method in class org.wicketstuff.async.components.ProgressButton
Override to trigger a custom action whenever an error is occurred.
onTaskStart(Optional<AjaxRequestTarget>) - Method in class org.wicketstuff.async.components.ProgressButton
Override to trigger a custom action whenever a task is started.
onTaskSuccess(Optional<AjaxRequestTarget>) - Method in class org.wicketstuff.async.components.ProgressButton
Override to trigger a custom action whenever a task succeeded.
org.wicketstuff.async.components - package org.wicketstuff.async.components
 
org.wicketstuff.async.task - package org.wicketstuff.async.task
 

P

ProgressBar - Class in org.wicketstuff.async.components
This component renders a progress bar to an existent task which is controlled by a progress button.
ProgressBar(String, ProgressButton) - Constructor for class org.wicketstuff.async.components.ProgressBar
 
ProgressButton - Class in org.wicketstuff.async.components
A progress button which allows to control a Runnable.
ProgressButton(String, Form<?>, IModel<? extends AbstractTaskContainer>, Duration) - Constructor for class org.wicketstuff.async.components.ProgressButton
 
ProgressButton(String, IModel<String>, Form<?>, IModel<? extends AbstractTaskContainer>, Duration) - Constructor for class org.wicketstuff.async.components.ProgressButton
 
ProgressButton(String, Form<?>, IModel<? extends AbstractTaskContainer>, IRunnableFactory, Duration) - Constructor for class org.wicketstuff.async.components.ProgressButton
 
ProgressButton(String, IModel<String>, Form<?>, IModel<? extends AbstractTaskContainer>, IRunnableFactory, Duration) - Constructor for class org.wicketstuff.async.components.ProgressButton
 

R

refresh(AjaxRequestTarget) - Method in class org.wicketstuff.async.components.ProgressButton
Overriding allows a custom refresh behavior.
registerCssClassModel(IModel<String>, TaskState, InteractionState) - Method in class org.wicketstuff.async.components.ProgressBar
Adds a model for a css class which will be appended only if taskState and interactionState apply.
registerCssClassModel(IModel<String>, TaskState...) - Method in class org.wicketstuff.async.components.ProgressBar
Adds a model for a css class which will be appended if any of the taskStates apply, disregarding any possible interaction state.
registerCssClassModel(IModel<String>, InteractionState...) - Method in class org.wicketstuff.async.components.ProgressBar
Adds a model for a css class which will be appended if any of the interactionStates apply, disregarding any possible task state.
registerCssClassModel(IModel<String>, TaskState, InteractionState) - Method in class org.wicketstuff.async.components.ProgressButton
Adds a model for a css class which will be appended only if taskState and interactionState apply.
registerCssClassModel(IModel<String>, TaskState...) - Method in class org.wicketstuff.async.components.ProgressButton
Adds a model for a css class which will be appended if any of the taskStates apply, disregarding any possible interaction state.
registerCssClassModel(IModel<String>, InteractionState...) - Method in class org.wicketstuff.async.components.ProgressButton
Adds a model for a css class which will be appended if any of the interactionStates apply, disregarding any possible task state.
registerMessageModel(IModel<String>, TaskState, InteractionState) - Method in class org.wicketstuff.async.components.ProgressButton
Adds a text model for the button which will be appended only if taskState and interactionState apply.
registerMessageModel(IModel<String>, TaskState...) - Method in class org.wicketstuff.async.components.ProgressButton
Adds a text model for the button which will be appended if any of the taskStates apply, disregarding any possible interaction state.
registerMessageModel(IModel<String>, InteractionState...) - Method in class org.wicketstuff.async.components.ProgressButton
Adds a text model for the button which will be appended if any of the interactionStates apply, disregarding any possible task state.
removeRefreshDependant(Component) - Method in class org.wicketstuff.async.components.ProgressButton
Allows to remove a component which was rerendered every time the button was rerendered.

S

setTaskContainerModel(IModel<? extends AbstractTaskContainer>) - Method in class org.wicketstuff.async.components.ProgressButton
 
submit(Runnable) - Method in class org.wicketstuff.async.task.AbstractTaskContainer
 
submit(Runnable) - Method in class org.wicketstuff.async.task.DefaultTaskManager
 
submit(Runnable, boolean) - Method in class org.wicketstuff.async.task.DefaultTaskManagerHook
 
submit(Runnable, boolean) - Method in interface org.wicketstuff.async.task.ITaskManagerHook
 

T

TaskState - Enum in org.wicketstuff.async.components
Describes the state of a task.

V

valueOf(String) - Static method in enum org.wicketstuff.async.components.InteractionState
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.wicketstuff.async.components.TaskState
Returns the enum constant of this type with the specified name.
values() - Static method in enum org.wicketstuff.async.components.InteractionState
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.wicketstuff.async.components.TaskState
Returns an array containing the constants of this enum type, in the order they are declared.
A C D F G I L M O P R S T V 
Skip navigation links

Copyright © 2013–2020 Kantega AS. All rights reserved.