functionalj.promise.PromiseChainAddOn Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of functionalj-core Show documentation
Show all versions of functionalj-core Show documentation
The module for FunctionalJ Core.
// ============================================================================
// Copyright (c) 2017-2021 Nawapunth Manusitthipol (NawaMan - http://nawaman.net).
// ----------------------------------------------------------------------------
// MIT License
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
// ============================================================================
package functionalj.promise;
import java.util.function.BiFunction;
import java.util.function.Function;
import java.util.function.Predicate;
import functionalj.function.Func3;
import functionalj.function.Func4;
import functionalj.function.Func5;
import functionalj.function.Func6;
import functionalj.result.Result;
import functionalj.tuple.Tuple2;
import functionalj.tuple.Tuple3;
import functionalj.tuple.Tuple4;
import functionalj.tuple.Tuple5;
import functionalj.tuple.Tuple6;
@SuppressWarnings({ "unchecked", "rawtypes" })
public interface PromiseChainAddOn {
public Promise mapResult(Function, Result extends TARGET>> mapper);
public default Promise chain(Function super DATA, ? extends HasPromise> mapper) {
return mapResult(result -> result.chain((Function)mapper));
}
public default Promise chainOnly(Predicate super DATA> checker, Function super DATA, Promise> mapper) {
return mapResult(result -> result.chainOnly((Predicate)checker, (Function)mapper));
}
public default Promise chainIf(
Predicate super DATA> checker,
Function super DATA, Promise> mapper,
Function super DATA, Promise> elseMapper) {
return mapResult(result -> result.chainIf((Predicate)checker, (Function)mapper, (Function)elseMapper));
}
public default Promise chainAny(
Function super DATA, Promise> mapper1,
Function super DATA, Promise> mapper2) {
return mapResult(result -> result.chainAny((Function)mapper1, (Function)mapper2));
}
public default Promise chainAny(
Function super DATA, Promise> mapper1,
Function super DATA, Promise> mapper2,
Function super DATA, Promise> mapper3) {
return mapResult(result -> result.chainAny((Function)mapper1, (Function)mapper2, (Function)mapper3));
}
public default Promise chainAny(
Function super DATA, Promise> mapper1,
Function super DATA, Promise> mapper2,
Function super DATA, Promise> mapper3,
Function super DATA, Promise> mapper4) {
return mapResult(result -> result.chainAny((Function)mapper1, (Function)mapper2, (Function)mapper3, (Function)mapper4));
}
public default Promise chainAny(
Function super DATA, Promise> mapper1,
Function super DATA, Promise> mapper2,
Function super DATA, Promise> mapper3,
Function super DATA, Promise> mapper4,
Function super DATA, Promise> mapper5) {
return mapResult(result -> result.chainAny((Function)mapper1, (Function)mapper2, (Function)mapper3, (Function)mapper4, (Function)mapper5));
}
public default Promise chainAny(
Function super DATA, Promise> mapper1,
Function super DATA, Promise> mapper2,
Function super DATA, Promise> mapper3,
Function super DATA, Promise> mapper4,
Function super DATA, Promise> mapper5,
Function super DATA, Promise> mapper6) {
return mapResult(result -> result.chainAny((Function)mapper1, (Function)mapper2, (Function)mapper3, (Function)mapper4, (Function)mapper5, (Function)mapper6));
}
public default
Promise> chainTuple(
Function super DATA, ? extends Promise> mapper1,
Function super DATA, ? extends Promise> mapper2) {
return mapResult(result -> result.chainTuple((Function)mapper1, (Function)mapper2));
}
public default
Promise> chainTuple(
Function super DATA, ? extends Promise> mapper1,
Function super DATA, ? extends Promise> mapper2,
Function super DATA, ? extends Promise> mapper3) {
return mapResult(result -> result.chainTuple((Function)mapper1, (Function)mapper2, (Function)mapper3));
}
public default
Promise> chainTuple(
Function super DATA, ? extends Promise> mapper1,
Function super DATA, ? extends Promise> mapper2,
Function super DATA, ? extends Promise> mapper3,
Function super DATA, ? extends Promise> mapper4) {
return mapResult(result -> result.chainTuple((Function)mapper1, (Function)mapper2, (Function)mapper3, (Function)mapper4));
}
public default
Promise> chainTuple(
Function super DATA, ? extends Promise> mapper1,
Function super DATA, ? extends Promise> mapper2,
Function super DATA, ? extends Promise> mapper3,
Function super DATA, ? extends Promise> mapper4,
Function super DATA, ? extends Promise> mapper5) {
return mapResult(result -> result.chainTuple((Function)mapper1, (Function)mapper2, (Function)mapper3, (Function)mapper4, (Function)mapper5));
}
public default
Promise> chainTuple(
Function super DATA, ? extends Promise> mapper1,
Function super DATA, ? extends Promise> mapper2,
Function super DATA, ? extends Promise> mapper3,
Function super DATA, ? extends Promise> mapper4,
Function super DATA, ? extends Promise> mapper5,
Function super DATA, ? extends Promise> mapper6) {
return mapResult(result -> result.chainTuple((Function)mapper1, (Function)mapper2, (Function)mapper3, (Function)mapper4, (Function)mapper5, (Function)mapper6));
}
public default
Promise chainThen(
Function super DATA, ? extends Promise> mapper1,
Function super DATA, ? extends Promise> mapper2,
BiFunction mapper) {
return mapResult(result -> result.chainThen((Function)mapper1, (Function)mapper2, (BiFunction)mapper));
}
public default
Promise chainThen(
Function super DATA, ? extends Promise> mapper1,
Function super DATA, ? extends Promise> mapper2,
Function super DATA, ? extends Promise> mapper3,
Func3 mapper) {
return mapResult(result -> result.chainThen((Function)mapper1, (Function)mapper2, (Function)mapper3, (Func3)mapper));
}
public default
Promise chainThen(
Function super DATA, ? extends Promise> mapper1,
Function super DATA, ? extends Promise> mapper2,
Function super DATA, ? extends Promise> mapper3,
Function super DATA, ? extends Promise> mapper4,
Func4 mapper) {
return mapResult(result -> result.chainThen((Function)mapper1, (Function)mapper2, (Function)mapper3, (Function)mapper4, (Func4)mapper));
}
public default
Promise chainThen(
Function super DATA, ? extends Promise> mapper1,
Function super DATA, ? extends Promise> mapper2,
Function super DATA, ? extends Promise> mapper3,
Function super DATA, ? extends Promise> mapper4,
Function super DATA, ? extends Promise> mapper5,
Func5 mapper) {
return mapResult(result -> result.chainThen((Function)mapper1, (Function)mapper2, (Function)mapper3, (Function)mapper4, (Function)mapper5, (Func5)mapper));
}
public default
Promise chainThen(
Function super DATA, ? extends Promise> mapper1,
Function super DATA, ? extends Promise> mapper2,
Function super DATA, ? extends Promise> mapper3,
Function super DATA, ? extends Promise> mapper4,
Function super DATA, ? extends Promise> mapper5,
Function super DATA, ? extends Promise> mapper6,
Func6 mapper) {
return mapResult(result -> result.chainThen((Function)mapper1, (Function)mapper2, (Function)mapper3, (Function)mapper4, (Function)mapper5, (Function)mapper6, (Func6)mapper));
}
}