Interface TCEConsumer<T>

Type Parameters:
T - The type of the input to the operation.
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface @ClassVersion(sourceVersion="$Id: TCEConsumer.java 993 2022-01-19 22:26:20Z tquadrat $") @API(status=STABLE, since="0.0.5") public interface TCEConsumer<T>
The TCE version of the interface Consumer that represents an operation that accepts a single input argument and returns no result. Unlike most other functional interfaces, Consumer is expected to operate via side effects.

Different from the method Consumer.accept() the method accept(Object) of this interface declares to throw a checked exception.

This is a functional interface whose functional method is accept(Object).
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: TCEConsumer.java 993 2022-01-19 22:26:20Z tquadrat $
Since:
0.0.5
UML Diagram
UML Diagram for "org.tquadrat.foundation.function.tce.TCEConsumer"

UML Diagram for "org.tquadrat.foundation.function.tce.TCEConsumer"

UML Diagram for "org.tquadrat.foundation.function.tce.TCEConsumer"
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(T arg)
    Performs this operation on the given argument.
  • Method Details

    • accept

      void accept(T arg) throws Exception
      Performs this operation on the given argument.
      Parameters:
      arg - The input argument
      Throws:
      Exception - Something went wrong.