Example usage for javafx.concurrent Task subclass-usage

List of usage examples for javafx.concurrent Task subclass-usage

Introduction

In this page you can find the example usage for javafx.concurrent Task subclass-usage.

Usage

From source file caillou.company.clonemanager.gui.service.task.impl.DeleteFilesTask.java

/**
 *
 * @author pierre
 */
@Component
@Scope(value = "prototype")

From source file caillou.company.clonemanager.gui.service.task.impl.AbstractFetchTask.java

/**
 *
 * @author pierre
 */
public abstract class AbstractFetchTask extends Task<Set<GUIApplicationFile>> {

From source file Main.java

class IteratingTask extends Task<Integer> {
    private final int totalIterations;

    public IteratingTask(int totalIterations) {
        this.totalIterations = totalIterations;
    }

From source file ninja.eivind.hotsreplayuploader.concurrent.tasks.HeroListTask.java

/**
 * Asynchronous {@link Task}, which retrieves a list of
 * all currently available {@link HotSLogsHero}es from the hotslogs API.
 */
public class HeroListTask extends Task<List<HotSLogsHero>> {
    public static final String API_ROUTE = "https://www.hotslogs.com/API/Data/Heroes";

From source file mongis.utils.ImageFinderTask.java

/**
 *
 * @author cyril
 */
public class ImageFinderTask extends Task<List<File>> {

From source file cn.edu.suda.core.AnalysisTask.java

/**
 *
 * @author Wentao Wu
 */
public class AnalysisTask extends Task<Integer> {

From source file uk.bl.dpt.utils.freqy.ui.FreqyTask.java

public class FreqyTask extends Task<Object> {

    private ArrayList<File> fileList;
    private int n;
    private String inPath;
    private String outPath;

From source file caillou.company.clonemanager.gui.service.task.impl.PartialHashTaskImpl.java

/**
 *
 * @author pierre
 */
@Component
@Scope(value = "prototype")

From source file caillou.company.clonemanager.gui.service.task.impl.EnqueueImplTask.java

/**
 *
 * @author pierre
 */
@Component
@Scope(value = "prototype")

From source file cn.edu.suda.core.ProcessTask.java

/**
 *
 * @author Wentao Wu
 */
public class ProcessTask extends Task<Integer> {