eo-cqrs / ideas

In this repository we keep all our future ideas for eo-cqrs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

eo-integration

h1alexbel opened this issue · comments

Integration framework for source-target sync up, ETLs, and so on.

public interface Source {

  void stream(Target target, DataStream stream);
}

public interface Target {

  void acquire(Step step);
}

public interface Step<X> {

  final class Simple<X> implements Step<X> {
    private final X data;
  }
}

interface Result<R, F> {

  R outcome(Iterable<F> steps);
 }

will be part of cactooses, see #20