package fr.uge.concurrence;

import java.util.List;

public class FastestWithAllItems {
	private final int timeoutMilliPerRequest;
	private final int threadsPerSite;

	public FastestWithAllItems(int timeoutMilliPerRequest, int threadsPerSite) {
		this.timeoutMilliPerRequest = timeoutMilliPerRequest;
		this.threadsPerSite = threadsPerSite;
	}

	public List<Answer> retrieve(List<String> items) throws InterruptedException {
		// TODO
		return null;
	}

	public static void main(String[] args) {
		try {
			var aggregator = new FastestWithAllItems(2_000, 2);
			var answer = aggregator.retrieve(List.of("tortank", "pikachu", "evoli", "miaouss", "salameche"));
			System.out.println(answer);
		} catch (InterruptedException e) {
			throw new AssertionError();
		}
	}
}