Uses of Interface
org.jboss.hal.flow.Task
-
Packages that use Task Package Description org.jboss.hal.client.bootstrap.tasks org.jboss.hal.client.configuration.subsystem.datasource org.jboss.hal.core.runtime org.jboss.hal.dmr org.jboss.hal.flow -
-
Uses of Task in org.jboss.hal.client.bootstrap.tasks
Classes in org.jboss.hal.client.bootstrap.tasks that implement Task Modifier and Type Class Description classFindDomainControllerclassFindNonProgressingTaskclassLoadSettingsLoads the settings.classReadAuthenticationReads attributes from/core-service=management/access=authorization.classReadEnvironmentReads important information from the root resource like product name and version, operation mode and management version.classReadHostNamesReads the domain controller.classReadStabilityLevelclassRegisterStaticCapabilitiesReads the capabilities from the capability registry.classSetTitleclassStartAnalyticsInitialises google analytics and bindsTrackerMethods in org.jboss.hal.client.bootstrap.tasks that return types with arguments of type Task Modifier and Type Method Description List<Task<FlowContext>>BootstrapTasks. tasks() -
Uses of Task in org.jboss.hal.client.configuration.subsystem.datasource
Methods in org.jboss.hal.client.configuration.subsystem.datasource that return types with arguments of type Task Modifier and Type Method Description static List<Task<FlowContext>>JdbcDriverTasks. jdbcDriverProperties(Environment environment, Dispatcher dispatcher, StatementContext statementContext, String driverName, Resources resources) -
Uses of Task in org.jboss.hal.core.runtime
Methods in org.jboss.hal.core.runtime that return types with arguments of type Task Modifier and Type Method Description static List<Task<FlowContext>>TopologyTasks. hosts(Environment environment, Dispatcher dispatcher)Returns a list of tasks to read all hosts (connected and disconnected) and its servers.static List<Task<FlowContext>>TopologyTasks. runningServers(Environment environment, Dispatcher dispatcher, ModelNode query)Returns a list of tasks to read all running servers in the domain, which satisfy the specified query.static List<Task<FlowContext>>TopologyTasks. serverConfigsOfHost(Environment environment, Dispatcher dispatcher, String host)Returns a list of tasks to read the server configs of one host.static List<Task<FlowContext>>TopologyTasks. serverGroups(Environment environment, Dispatcher dispatcher)Returns a list of tasks to read all server groups and its servers.static List<Task<FlowContext>>TopologyTasks. serversOfHost(Environment environment, Dispatcher dispatcher, String host)Returns a list of tasks to read the servers of one host.static List<Task<FlowContext>>TopologyTasks. serversOfServerGroup(Environment environment, Dispatcher dispatcher, String serverGroup)Returns a list of tasks to read the servers of one server group.static List<Task<FlowContext>>TopologyTasks. topology(Environment environment, Dispatcher dispatcher)Returns a list of tasks to read the basic topology. -
Uses of Task in org.jboss.hal.dmr
Classes in org.jboss.hal.dmr that implement Task Modifier and Type Class Description classResourceCheckFunction which checks whether a given resource exists. -
Uses of Task in org.jboss.hal.flow
Classes in org.jboss.hal.flow that implement Task Modifier and Type Class Description classParallelTasks<C extends FlowContext>A task implementation that executes a list of asynchronous tasks in parallel.classRepeatTask<C extends FlowContext>A task implementation that executes a task as long as certain conditions are met.classSequentialTasks<C extends FlowContext>A task implementation that executes a list of asynchronous tasks in order.Methods in org.jboss.hal.flow with parameters of type Task Modifier and Type Method Description static <C extends FlowContext>
Repeat<C>Flow. repeat(C context, Task<C> task)Method parameters in org.jboss.hal.flow with type arguments of type Task Modifier and Type Method Description static <C extends FlowContext>
Sequence<C>Flow. parallel(C context, List<Task<C>> tasks)Executes a list of asynchronous tasks in parallel (all at once).static <C extends FlowContext>
Sequence<C>Flow. sequential(C context, List<Task<C>> tasks)Executes a list of asynchronous tasks in sequence (one after the other).Constructors in org.jboss.hal.flow with parameters of type Task Constructor Description RepeatTask(C context, Task<C> task, Predicate<C> predicate, boolean failFast, long interval, long timeout, int iterations)RepeatTask(Task<C> task, Predicate<C> predicate, boolean failFast, long interval, long timeout, int iterations)Constructor parameters in org.jboss.hal.flow with type arguments of type Task Constructor Description ParallelTasks(C context, List<Task<C>> tasks)Creates a new task that executes the given list of asynchronous tasks in parallel using a new context.ParallelTasks(C context, List<Task<C>> tasks, boolean failFast)Creates a new task that executes the given list of asynchronous tasks in parallel using a new context.ParallelTasks(List<Task<C>> tasks)Creates a new task that executes the given list of asynchronous tasks in parallel re-using an existing context.ParallelTasks(List<Task<C>> tasks, boolean failFast)Creates a new task that executes the given list of asynchronous tasks in parallel re-using an existing context.SequentialTasks(C context, List<Task<C>> tasks)SequentialTasks(C context, List<Task<C>> tasks, boolean failFast)SequentialTasks(List<Task<C>> tasks)Creates a new task that executes the given list of asynchronous tasks in order re-using an existing context.SequentialTasks(List<Task<C>> tasks, boolean failFast)Creates a new task that executes the given list of asynchronous tasks in order re-using an existing context.
-