public interface ClosureMonitor
| Modifier and Type | Method and Description |
|---|---|
void |
checkNotClosed()
Checks if state of this ClosureMonitor is set to closed and if so,
throws the causing Exception.
|
void |
close()
Sets monitor state to closed, and sets the cause to a
CursorClosedException without an error message string.
|
void |
close(Exception cause)
Sets monitor state to closed, and sets the cause to a specific
Exception.
|
void |
close(String cause)
Sets monitor state to closed, and sets the cause to a
CursorClosedException with a specific error message string.
|
Exception |
getCause()
Gets the cause of the closure.
|
boolean |
isClosed()
Gets whether the state of this ClosureMonitor is set to closed.
|
void close()
void close(String cause)
cause - error message stringvoid close(Exception cause)
cause - the exception to associate with the closureboolean isClosed()
void checkNotClosed()
throws CursorClosedException
CursorClosedException - the cause of the closureException getCause()
Copyright © 2003–2016 The Apache Software Foundation. All rights reserved.