public abstract class PgxFrameColumn
extends java.lang.Object
implements java.lang.AutoCloseable| Constructor and Description |
|---|
PgxFrameColumn() |
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Calls
destroyAsync() without waiting for completion. |
void |
destroy()
Blocking version of
destroyAsync(). |
abstract PgxFuture<java.lang.Void> |
destroyAsync()
Requests destruction of this object.
|
abstract ColumnDescriptor |
getDescriptor()
Return a description of the column
|
public void close()
destroyAsync() without waiting for completion.close in interface java.lang.AutoCloseablepublic void destroy()
throws java.lang.InterruptedException,
java.util.concurrent.ExecutionException
destroyAsync(). Calls destroyAsync() and waits for the returned PgxFuture to complete.java.lang.InterruptedException - if the caller thread gets interrupted while waiting for completion.java.util.concurrent.ExecutionException - if any exception occurred during asynchronous execution. The actual exception will be nested.public abstract PgxFuture<java.lang.Void> destroyAsync()
public abstract ColumnDescriptor getDescriptor()