List of usage examples for javafx.concurrent ScheduledService subclass-usage
From source file ninja.eivind.hotsreplayuploader.services.HeroService.java
/** * {@link ScheduledService} for checking the current list of available {@link HotSLogsHero}es periodically. */ @Component public class HeroService extends ScheduledService<List<HotSLogsHero>> {
From source file ninja.eivind.hotsreplayuploader.services.AccountService.java
/** * {@link ScheduledService} for checking the current values of * a user's {@link Account}s. Will be checked often for MMR changes. */ @Component public class AccountService extends ScheduledService<List<Account>> {
From source file ok.MyService2.java
/** * * @author dasha */ public class MyService2 extends ScheduledService<BlockingQueue> {
From source file ninja.eivind.hotsreplayuploader.services.UploaderService.java
/** * {@link ScheduledService}, that is responsible for uploading {@link ReplayFile}s * to {@link Provider}s. Does also take care of updating the UI in the process. */ @Component public class UploaderService extends ScheduledService<ReplayFile> implements InitializingBean {