001/*
002 * Copyright (c) 2016-2017 Daniel Ennis (Aikar) - MIT License
003 *
004 *  Permission is hereby granted, free of charge, to any person obtaining
005 *  a copy of this software and associated documentation files (the
006 *  "Software"), to deal in the Software without restriction, including
007 *  without limitation the rights to use, copy, modify, merge, publish,
008 *  distribute, sublicense, and/or sell copies of the Software, and to
009 *  permit persons to whom the Software is furnished to do so, subject to
010 *  the following conditions:
011 *
012 *  The above copyright notice and this permission notice shall be
013 *  included in all copies or substantial portions of the Software.
014 *
015 *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
016 *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
017 *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
018 *  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
019 *  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
020 *  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
021 *  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
022 */
023
024package co.aikar.taskchain;
025
026/**
027 * Defines actions to perform when a chain is used with .abortIfNull
028 * Override desired arguments needed to provide actions
029 *
030 * @deprecated Use {@link TaskChainAbortAction} instead
031 * @param <A1>
032 * @param <A2>
033 * @param <A3>
034 */
035@SuppressWarnings("WeakerAccess")
036@Deprecated
037public interface TaskChainNullAction <A1, A2, A3> extends TaskChainAbortAction<A1, A2, A3> {
038    default void onNull(TaskChain<?> chain, A1 arg1) {}
039    default void onNull(TaskChain<?> chain, A1 arg1, A2 arg2) {
040        onNull(chain, arg1);
041    }
042    default void onNull(TaskChain<?> chain, A1 arg1, A2 arg2, A3 arg3) {
043        onNull(chain, arg1, arg2);
044    }
045
046    @Override
047    default void onAbort(TaskChain<?> chain, A1 arg1) {
048        onNull(chain, arg1);
049    }
050
051    @Override
052    default void onAbort(TaskChain<?> chain, A1 arg1, A2 arg2) {
053        onNull(chain, arg1, arg2);
054    }
055
056    @Override
057    default void onAbort(TaskChain<?> chain, A1 arg1, A2 arg2, A3 arg3) {
058        onNull(chain, arg1, arg2, arg3);
059    }
060}