Interface Subscription

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 Subscription
A handle to a registered listener that can be cancelled.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Stops the listener from receiving further events.
  • Method Details

    • cancel

      void cancel()
      Stops the listener from receiving further events.