EchoPoint API - 3.0.0b5
App Webcontainer

echopoint.tucana.event
Interface DownloadCallback

All Superinterfaces:
EventListener, Serializable
All Known Implementing Classes:
DownloadCallbackAdapter

public interface DownloadCallback
extends EventListener, Serializable

An interface that defines the methods that are notified as a client content download command progresses.

Version:
$Id: DownloadCallback.java 92 2008-11-11 19:49:44Z sptrakesh $
Author:
Rakesh 2008-11-11

Method Summary
 void downloadFailed(DownloadFailEvent event)
          Indicate that a content download process failed, usually due to reasons other than client cancellation.
 void downloadFinished(DownloadFinishEvent event)
          Indicate that a content download process has ended successfully.
 void downloadStarted(DownloadStartEvent event)
          Indicate that a content download process has been started.
 

Method Detail

downloadStarted

void downloadStarted(DownloadStartEvent event)
Indicate that a content download process has been started.

Parameters:
event - The download event object.

downloadFinished

void downloadFinished(DownloadFinishEvent event)
Indicate that a content download process has ended successfully.

Parameters:
event - The download event object.

downloadFailed

void downloadFailed(DownloadFailEvent event)
Indicate that a content download process failed, usually due to reasons other than client cancellation.

Parameters:
event - The download fail event object.

EchoPoint API - 3.0.0b5
App Webcontainer