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

com.github.euler.configuration.ConcurrentTaskConfigConverter Maven / Gradle / Ivy

There is a newer version: 0.10.0
Show newest version
package com.github.euler.configuration;

import com.github.euler.core.ConcurrentTask;
import com.github.euler.core.Task;

public class ConcurrentTaskConfigConverter extends AbstractMultiTaskConfigConverter {

    @Override
    public String type() {
        return "concurrent";
    }

    @Override
    protected Task convert(String name, Task[] tasks) {
        return new ConcurrentTask(name, tasks);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy