public class FrameCompletionHandler extends Object implements CompletionHandler<DataFrame>
| Constructor and Description |
|---|
FrameCompletionHandler() |
| Modifier and Type | Method and Description |
|---|---|
void |
cancelled()
The operation was cancelled.
|
void |
completed(DataFrame result)
The operation was completed.
|
void |
failed(Throwable throwable)
The operation was failed.
|
DataFrame |
getResult() |
void |
updated(DataFrame result)
The callback method may be called, when there is some progress in
operation execution, but it is still not completed
|
public void cancelled()
CompletionHandlercancelled in interface CompletionHandler<DataFrame>public void failed(Throwable throwable)
CompletionHandlerfailed in interface CompletionHandler<DataFrame>throwable - error, which occurred during operation executionpublic void completed(DataFrame result)
CompletionHandlercompleted in interface CompletionHandler<DataFrame>result - the operation resultpublic void updated(DataFrame result)
CompletionHandlerupdated in interface CompletionHandler<DataFrame>result - the current resultpublic DataFrame getResult()
Copyright © 2013 Oracle Corporation. All rights reserved.