Interface SupportUploadSuccessHandler<V>

Type Parameters:
V - the type of the uploaded data

public interface SupportUploadSuccessHandler<V>
Interface for components that support setting an upload success handler.
  • Method Details

    • setUploadSuccessHandler

      void setUploadSuccessHandler(@Nullable SupportUploadSuccessHandler.UploadSuccessHandler<V> handler)
      Sets a handler to be invoked upon the successful completion of an upload operation.

      If null is passed as the parameter, any previously set handler will be cleared.

      Parameters:
      handler - the handler to be executed on a successful upload; may be null to clear any existing handler