mirror of
https://github.com/plexusorg/Plex.git
synced 2024-11-20 02:14:59 +00:00
17 lines
301 B
Java
17 lines
301 B
Java
|
package me.totalfreedom.plex.services;
|
||
|
|
||
|
public abstract class AbstractService implements IService
|
||
|
{
|
||
|
|
||
|
private boolean asynchronous;
|
||
|
|
||
|
public AbstractService(boolean async)
|
||
|
{
|
||
|
this.asynchronous = async;
|
||
|
}
|
||
|
|
||
|
public boolean isAsynchronous() {
|
||
|
return asynchronous;
|
||
|
}
|
||
|
}
|