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