blob: db4d5b357ca980a675a80e62b1f4649f9d9fb532 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
* Created on Tuesday, July 06 2010 00:46
*/
package com.jogamp.opencl.impl;
/**
* A callback for a specific command execution status.
* @author Michael Bien
*/
public interface CLEventCallback {
public void eventStateChanged(long event, int status);
}
|