Introduce TupleConsumer interface extending and implementing the java.util.function.Consumer interface accepting a variable number of arguments reprented by InvocationArguments.

This commit is contained in:
John Blum
2020-04-26 15:33:48 -07:00
parent 7ab6cc25b8
commit 3770ff4569
2 changed files with 107 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
/*
* Copyright 2020 the original author or authors.
*
* 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
*
* https://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 org.springframework.geode.util.function;
import java.util.function.Consumer;
/**
* {@link Consumer} implementation accepting a tuple of {@link InvocationArguments arguments}.
*
* @author John Blum
* @see java.util.function.Consumer
* @see org.springframework.geode.util.function.InvocationArguments
* @since 1.3.0
*/
@SuppressWarnings("unused")
public interface TupleConsumer extends Consumer<InvocationArguments> {
}