Big update

This commit is contained in:
2022-01-03 21:04:39 -06:00
parent 921a62cd58
commit 88c70e84cc
59 changed files with 407 additions and 296 deletions

View File

@ -2,14 +2,19 @@ package dev.plex.services;
public abstract class AbstractService implements IService
{
private boolean asynchronous;
private boolean repeating;
public AbstractService(boolean async)
public AbstractService(boolean repeating, boolean async)
{
this.repeating = repeating;
this.asynchronous = async;
}
public boolean isRepeating() {
return repeating;
}
public boolean isAsynchronous() {
return asynchronous;
}