Interface Retryable


public interface Retryable
Simple interface for executing a piece of code. Used for writing anonymous inner classes in FTP task for retry-on-IOException behaviour.
See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    The value to use to never give up.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Called to execute the code.
  • Field Details

    • RETRY_FOREVER

      static final int RETRY_FOREVER
      The value to use to never give up.
      See Also:
  • Method Details

    • execute

      void execute() throws IOException
      Called to execute the code.
      Throws:
      IOException - if there is a problem.