All Downloads are FREE. Search and download functionalities are using the official Maven repository.

es.tid.provisioningManager.modules.orchestrator.OrchestratorQueue Maven / Gradle / Ivy

The newest version!
package es.tid.provisioningManager.modules.orchestrator;

import java.util.LinkedList;


public class OrchestratorQueue {

    private final int nThreads;
    private final OrchestratorThread[] threads;
    private final LinkedList queue;

    public OrchestratorQueue(int nThreads)
    {
        this.nThreads = nThreads;
        queue = new LinkedList();
        threads = new OrchestratorThread[nThreads];

        for (int i=0; i




© 2015 - 2025 Weber Informatics LLC | Privacy Policy