This commit is contained in:
2021-01-03 01:21:15 -06:00
parent 8ecc1d2fce
commit 5bafa1122c
91 changed files with 452 additions and 460 deletions

View File

@ -0,0 +1,16 @@
package dev.plex.services;
public abstract class AbstractService implements IService
{
private boolean asynchronous;
public AbstractService(boolean async)
{
this.asynchronous = async;
}
public boolean isAsynchronous() {
return asynchronous;
}
}