merge conf

This commit is contained in:
Tr1xt4n 2023-03-03 11:14:52 +01:00
commit 25ae47fe5b
2 changed files with 38 additions and 4 deletions

View File

@ -1,8 +1,29 @@
package fr.ntr.scheduler;
import java.util.List;
import fr.ntr.User;
public class MaxSNR extends Scheduler {
private String name;
@Override
public void scheduling() {
}
@Override
protected void TraitementDonnées() {
// TODO Auto-generated method stub
}
private void selectionUtilisateur(int Ts, int Sp, List<User> Users) {
}
public MaxSNR(String name) {
this.name = name;
}
}

View File

@ -1,12 +1,16 @@
package fr.ntr.scheduler;
import java.util.List;
import fr.ntr.User;
public class RoundRobin extends Scheduler {
private String nom;
private String name;
private int index;
public RoundRobin(String nom, int index) {
this.nom = nom;
public RoundRobin(String name, int index) {
this.name = name;
this.index = index;
}
@ -14,6 +18,15 @@ public class RoundRobin extends Scheduler {
public void scheduling() {
}
private void selectionUtilisateur(int Ts, int Sp, List<User> Users) {
}
@Override
protected void TraitementDonnées() {
// TODO Auto-generated method stub
}