List of usage examples for javafx.concurrent Service subclass-usage
From source file com.cooksys.httpserver.HttpServerStarter.java
/**
*
* @author Tim Davidson
* Wrapper for simple http server for javafx concurrency compatibility.
* Extends javafx.concurrent.Service - allows javafx to manage background task
* of accepting and handling incoming connections.
From source file dtv.tools.DuplicateRemover.java
/**
* Util class for file decomposition
*
* @author nabillo
*/
@Component
From source file ninja.javafx.smartcsv.fx.util.LoadFileService.java
/** * Service class for async load of a csv file */ @org.springframework.stereotype.Service public class LoadFileService extends Service {
From source file ninja.javafx.smartcsv.fx.util.SaveFileService.java
/** * Service class for async load of a csv file */ @org.springframework.stereotype.Service public class SaveFileService extends Service {
From source file org.ado.biblio.desktop.server.ServerStatusService.java
/** * @author Andoni del Olmo, * @since 06.01.15 */ public class ServerStatusService extends Service<ServerStatusEnum> {
From source file org.ado.biblio.desktop.server.ServerPullingService.java
/**
* Class description here.
*
* @author andoni
* @since 25.10.2014
*/
From source file eu.over9000.skadi.service.DownloadService.java
public class DownloadService extends Service<File> { private final static Logger LOGGER = LoggerFactory.getLogger(DownloadService.class); private static final int BUFFER_SIZE = 1024 * 8; private static final int NANOS_IN_SECOND = 1_000_000_000;
From source file de.pro.dbw.application.testdata.service.DreamService.java
/** * * @author PRo */ public class DreamService extends Service<Void> {
From source file eu.over9000.skadi.service.ImportFollowedService.java
public class ImportFollowedService extends Service<Set<String>> { private static final Logger LOGGER = LoggerFactory.getLogger(ImportFollowedService.class); private final JsonParser parser = new JsonParser();
From source file de.pro.dbw.application.testdata.service.ReflectionService.java
/** * * @author PRo */ public class ReflectionService extends Service<Void> {