Module notzed.zcl
Package au.notzed.zcl

Interface CLNotify<T>

Type Parameters:
T - Type of source object.
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 CLNotify<T>
Generic notify routine.
  • Method Summary

    Modifier and Type Method Description
    static <T extends Native>
    Callback<CLNotify<T>>
    call​(CLNotify<T> notify, java.util.function.Function<jdk.incubator.foreign.MemoryAddress,​T> create)  
    void notify​(T source)  
  • Method Details

    • notify

      void notify​(T source)
    • call

      static <T extends Native> Callback<CLNotify<T>> call​(CLNotify<T> notify, java.util.function.Function<jdk.incubator.foreign.MemoryAddress,​T> create)