Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
NSAmelchev committed Jan 30, 2024
1 parent a7543ca commit 344ce97
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import org.apache.ignite.internal.visor.VisorMultiNodeTask;
import org.apache.ignite.compute.ComputeTask;

/**
* Annotation to specify task classes related to a command.
Expand All @@ -30,5 +30,5 @@
@Target(ElementType.TYPE)
public @interface RequireTask {
/** @return Task classes related to a command. */
public Class<? extends VisorMultiNodeTask<?, ?, ?>>[] value();
public Class<? extends ComputeTask<?, ?>>[] value();
}

0 comments on commit 344ce97

Please sign in to comment.