Interface ThrowableLongConsumer

  • All Superinterfaces:
    java.util.function.LongConsumer
    Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public interface ThrowableLongConsumer
    extends java.util.function.LongConsumer
    Represents an operation that accepts a single long-valued argument and returns no result. This is the primitive type specialization of ThrowableConsumer for long. Unlike most other functional interfaces, LongConsumer is expected to operate via side-effects.

    Permits checked exceptions unlike LongConsumer

    This is a functional interface whose functional method is accept(long).

    See Also:
    ThrowableConsumer
    • Method Summary

      All Methods Instance Methods Abstract Methods Default Methods 
      Modifier and Type Method Description
      default void accept​(long value)
      Performs this operation on the given argument.
      void acceptUnsafe​(long value)
      Performs this operation on the given argument.
      • Methods inherited from interface java.util.function.LongConsumer

        andThen
    • Method Detail

      • acceptUnsafe

        void acceptUnsafe​(long value)
                   throws java.lang.Throwable
        Performs this operation on the given argument.
        Parameters:
        value - the input argument
        Throws:
        java.lang.Throwable - occurred during processing
      • accept

        default void accept​(long value)
        Performs this operation on the given argument.
        Specified by:
        accept in interface java.util.function.LongConsumer
        Parameters:
        value - the input argument