Interface SharedTagContent.DetachListener<T>

Enclosing class:
SharedTagContent<T>
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 static interface SharedTagContent.DetachListener<T>
Since:
3.0.6
  • Method Summary

    Modifier and Type
    Method
    Description
    NB: Do not call any methods of this SharedTagContent inside detached, instead write it inside the returning Runnable object (Runnable.run).
  • Method Details

    • detached

      Runnable detached(SharedTagContent.DetachEvent<T> detachEvent)
      NB: Do not call any methods of this SharedTagContent inside detached, instead write it inside the returning Runnable object (Runnable.run).
      Parameters:
      detachEvent -
      Returns:
      Write code to run after detached invoked. It doen't guarantee the order of execution as the order of detached method execution. This is just like a post function for this method. If any methods of this SharedTagContent object to be called it must be written inside this returning Runnable object (Runnable.run).