-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package fr.leabar.iutbot.modules; | ||
|
||
public interface IModule { | ||
void start(); | ||
|
||
void stop(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package fr.leabar.iutbot.modules; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
import java.util.Optional; | ||
|
||
public class ModuleManager { | ||
private static final List<IModule> MODULES = new ArrayList<>(); | ||
|
||
public static void registerModules(){ | ||
|
||
} | ||
|
||
public static void startModules(){ | ||
MODULES.forEach(IModule::start); | ||
} | ||
|
||
public static void stopModules(){ | ||
MODULES.forEach(IModule::stop); | ||
} | ||
public static <T extends IModule> Optional<T> getModule(Class<T> tClass){ | ||
return MODULES.stream() | ||
.filter(tClass::isInstance) | ||
.map(tClass::cast) | ||
.findFirst(); | ||
} | ||
} |