Uses of Class
org.jboss.hal.flow.FlowContext
-
Packages that use FlowContext 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 FlowContext in org.jboss.hal.client.bootstrap.tasks
Methods in org.jboss.hal.client.bootstrap.tasks that return types with arguments of type FlowContext Modifier and Type Method Description elemental2.promise.Promise<FlowContext>FindDomainController. apply(FlowContext context)elemental2.promise.Promise<FlowContext>FindNonProgressingTask. apply(FlowContext context)elemental2.promise.Promise<FlowContext>LoadSettings. apply(FlowContext context)elemental2.promise.Promise<FlowContext>ReadAuthentication. apply(FlowContext context)elemental2.promise.Promise<FlowContext>ReadEnvironment. apply(FlowContext context)elemental2.promise.Promise<FlowContext>ReadHostNames. apply(FlowContext context)elemental2.promise.Promise<FlowContext>ReadStabilityLevel. apply(FlowContext context)elemental2.promise.Promise<FlowContext>RegisterStaticCapabilities. apply(FlowContext context)elemental2.promise.Promise<FlowContext>SetTitle. apply(FlowContext context)elemental2.promise.Promise<FlowContext>StartAnalytics. apply(FlowContext context)List<Task<FlowContext>>BootstrapTasks. tasks()Methods in org.jboss.hal.client.bootstrap.tasks with parameters of type FlowContext Modifier and Type Method Description elemental2.promise.Promise<FlowContext>FindDomainController. apply(FlowContext context)elemental2.promise.Promise<FlowContext>FindNonProgressingTask. apply(FlowContext context)elemental2.promise.Promise<FlowContext>LoadSettings. apply(FlowContext context)elemental2.promise.Promise<FlowContext>ReadAuthentication. apply(FlowContext context)elemental2.promise.Promise<FlowContext>ReadEnvironment. apply(FlowContext context)elemental2.promise.Promise<FlowContext>ReadHostNames. apply(FlowContext context)elemental2.promise.Promise<FlowContext>ReadStabilityLevel. apply(FlowContext context)elemental2.promise.Promise<FlowContext>RegisterStaticCapabilities. apply(FlowContext context)elemental2.promise.Promise<FlowContext>SetTitle. apply(FlowContext context)elemental2.promise.Promise<FlowContext>StartAnalytics. apply(FlowContext context) -
Uses of FlowContext in org.jboss.hal.client.configuration.subsystem.datasource
Methods in org.jboss.hal.client.configuration.subsystem.datasource that return types with arguments of type FlowContext Modifier and Type Method Description static List<Task<FlowContext>>JdbcDriverTasks. jdbcDriverProperties(Environment environment, Dispatcher dispatcher, StatementContext statementContext, String driverName, Resources resources)Methods in org.jboss.hal.client.configuration.subsystem.datasource with parameters of type FlowContext Modifier and Type Method Description elemental2.promise.IThenable<Object>JdbcDriverTasks.JdbcDriverOutcome. onInvoke(FlowContext context) -
Uses of FlowContext in org.jboss.hal.core.runtime
Methods in org.jboss.hal.core.runtime that return types with arguments of type FlowContext 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 FlowContext in org.jboss.hal.dmr
Methods in org.jboss.hal.dmr that return types with arguments of type FlowContext Modifier and Type Method Description elemental2.promise.Promise<FlowContext>ResourceCheck. apply(FlowContext context)Methods in org.jboss.hal.dmr with parameters of type FlowContext Modifier and Type Method Description elemental2.promise.Promise<FlowContext>ResourceCheck. apply(FlowContext context) -
Uses of FlowContext in org.jboss.hal.flow
Classes in org.jboss.hal.flow with type parameters of type FlowContext Modifier and Type Interface Description interfaceFlowCallback<C extends FlowContext>A callback for the outcome of the execution of asynchronous tasks.classParallelTasks<C extends FlowContext>A task implementation that executes a list of asynchronous tasks in parallel.interfacePromisable<C extends FlowContext>An interface to use the promise when executing asynchronous tasks.interfaceRepeat<C extends FlowContext>An interface to control the repeated execution of an asynchronous task.classRepeatTask<C extends FlowContext>A task implementation that executes a task as long as certain conditions are met.interfaceSequence<C extends FlowContext>classSequentialTasks<C extends FlowContext>A task implementation that executes a list of asynchronous tasks in order.interfaceSubscription<C extends FlowContext>An interface to subscribe to the outcome of the execution of asynchronous tasks.interfaceTask<C extends FlowContext>Interface for the execution of an asynchronous task.Methods in org.jboss.hal.flow with type parameters of type FlowContext 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).<C extends FlowContext>
elemental2.promise.Promise<C>FlowContext. reject(Object error)Rejects this context with an error.static <C extends FlowContext>
Repeat<C>Flow. repeat(C context, Task<C> task)<C extends FlowContext>
elemental2.promise.Promise<C>FlowContext. resolve()Resolves this context successfully as a promise.<C extends FlowContext,T>
elemental2.promise.Promise<C>FlowContext. resolve(String key, T value)Stores the value under the given key in the map and resolves this context successfully as a promise.<C extends FlowContext,T>
elemental2.promise.Promise<C>FlowContext. resolve(T value)Pushes the value on top of the stack and resolves this context successfully as a promise.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).
-