Interface DittoSignalNext

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 DittoSignalNext

A functional interface for signaling that the next item should be delivered.

This interface is typically used in reactive stream patterns to control the flow of data. Implementations signal readiness to receive the next item in a sequence.

This is a functional interface whose functional method is signal(), making it suitable for lambda expressions and method references.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Signals that the next item should be delivered.
  • Method Details

    • signal

      void signal()

      Signals that the next item should be delivered.

      Call this method to indicate readiness to receive the next item in a stream or sequence of data.