/** * Copyright 2016-2017 Seznam.cz, a.s. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package cz.seznam.euphoria.fluent; import cz.seznam.euphoria.core.client.io.DataSource; import cz.seznam.euphoria.core.util.Settings; import static java.util.Objects.requireNonNull; public class Flow { public static Flow create(String name) { return new Flow(cz.seznam.euphoria.core.client.flow.Flow.create(name)); } public static Flow create(String name, Settings settings) { return new Flow(cz.seznam.euphoria.core.client.flow.Flow.create(name, settings)); } private final cz.seznam.euphoria.core.client.flow.Flow wrap; Flow(cz.seznam.euphoria.core.client.flow.Flow wrap) { this.wrap = requireNonNull(wrap); } public <T> Dataset<T> read(DataSource<T> src) { return new Dataset<>(wrap.createInput(src)); } }