org.apache.tools.ant.util

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: RetryHandler

Field Summary
intRETRY_FOREVER
The value to use to never give up.
Method Summary
voidexecute()
Called to execute the code.

Field Detail

RETRY_FOREVER

public int RETRY_FOREVER
The value to use to never give up.

Method Detail

execute

public void execute()
Called to execute the code.

Throws: IOException if there is a problem.