com.github.euler.configuration.EulerDefault 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 java.util.Arrays;
import java.util.List;
public class EulerDefault implements EulerExtension {
@Override
public List taskConverters() {
return Arrays.asList(
new PipelineTaskConfigConverter(),
new ConcurrentTaskConfigConverter(),
new PooledTaskConfigConverter(),
new BarrierTaskConfigConverter(),
new BatchBarrierTaskConfigConverter());
}
@Override
public String getDescription() {
return "Euler Default Extension";
}
}