com.github.euler.configuration.ConcurrentTaskConfigConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of euler-config Show documentation
Show all versions of euler-config Show documentation
Euler - File Processing API - Config module.
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);
}
}