diff options
author | Michael Bien <[email protected]> | 2010-09-02 22:50:00 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-09-02 22:50:00 +0200 |
commit | 0e3893e7e3e270f8231b89eaf89537cf01a43052 (patch) | |
tree | afec21aeb7809abad9efd5fa326dcfd8fdbbd77e /src/com/jogamp/opencl/impl/CLEventCallback.java | |
parent | 2388b47f180989abd14a39188b1d4f80f221bdcf (diff) |
CLEvent callbacks for HLB and LLB.
Diffstat (limited to 'src/com/jogamp/opencl/impl/CLEventCallback.java')
-rw-r--r-- | src/com/jogamp/opencl/impl/CLEventCallback.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/com/jogamp/opencl/impl/CLEventCallback.java b/src/com/jogamp/opencl/impl/CLEventCallback.java new file mode 100644 index 00000000..db4d5b35 --- /dev/null +++ b/src/com/jogamp/opencl/impl/CLEventCallback.java @@ -0,0 +1,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); + +} |