| Overview | Group | Tree | Graph | Deprecated | Index | Concepts |

| Method Summary | |
|---|---|
public void | join() |
public virtual void | kill() const |
public virtual IloBool | test() const |
| Method Detail |
|---|
This method waits until the operation represented by this handle finishes. In other words, this method blocks until the operation either returns or is killed. The method also releases all resources allocated for the handle. This method discards the result of the underlying operation. In order to perform a join that returns the result of the underlying operation, consider join operations of the various subclasses.
It is an error to call this function more than once for the same operation.
This method kills the operation represented by this handle. The semantics of "killing an operation" depend on the operation itself. You still need to join the handle to clean any resources allocated for the handle and thus prevent memory leaks.
This method tests whether the operation represented by this handle is still running.
true if the operation represented by this handle is still running; returns false otherwise.