Package io.deephaven.engine.util.input
Interface InputTableStatusListener
- All Known Implementing Classes:
InputTableStatusListener.Future
,PythonInputTableStatusListenerAdapter
public interface InputTableStatusListener
A listener to be used with asynchronous input table methods to receive status notifications.
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final InputTableStatusListener
A Simple implementation that does nothing on success, and logs an error on failure -
Method Summary
-
Field Details
-
DEFAULT
A Simple implementation that does nothing on success, and logs an error on failure
-
-
Method Details
-
onError
Handle an error that occurred during an input table write.- Parameters:
t
- the error.
-
onSuccess
default void onSuccess()Handle successful completion of an input table write.
-