All Downloads are FREE. Search and download functionalities are using the official Maven repository.

brainslug.flow.execution.node.task.Execute Maven / Gradle / Ivy

The newest version!
package brainslug.flow.execution.node.task;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Identifies a method which is meant for execution in a {@link brainslug.flow.node.task.HandlerCallDefinition} callee.
 * Arguments for this method will provided from the {@link brainslug.flow.context.Registry}.
 * Its also possible to obtain the {@link brainslug.flow.context.ExecutionContext} this way.
 *
 * @see brainslug.flow.execution.node.TaskNodeExecutor and the corresponding test
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface Execute {
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy