Interface InputTableStatusListener

All Known Implementing Classes:
InputTableStatusListener.Future

public interface InputTableStatusListener
A listener to be used with asynchronous input table methods to receive status notifications.
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static class 
     
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    A Simple implementation that does nothing on success, and logs an error on failure
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Handle an error that occurred during an input table write.
    default void
    Handle successful completion of an input table write.
  • Field Details

    • DEFAULT

      static final InputTableStatusListener DEFAULT
      A Simple implementation that does nothing on success, and logs an error on failure
  • Method Details

    • onError

      void onError(Throwable t)
      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.