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

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

There is a newer version: 0.10.0
Show newest version
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";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy