- 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 CLEventNotify
Callback for CLEvent.
-
Method Summary
Modifier and Type Method Description static Callback<CLEventNotify>
call(CLEventNotify notify)
void
notify(CLEvent event, int status)
Callback target for clSetEventCallback.
-
Method Details
-
notify
Callback target for clSetEventCallback.- Parameters:
event
- event that caused the notify.status
- status.
-
call
-