public interface ProgressListener
Modifier and Type | Method and Description |
---|---|
void |
operationAborted(OperationType type)
Notified when the operation has been aborted.
|
void |
operationProgressed(int count,
int total,
OperationType type)
Receives progress informations.
|
void |
operationStarted(OperationType type)
Gets notified when an operation has been started.
|
void |
operationTerminated(OperationType type)
Notified when the operation has terminated.
|
void operationStarted(OperationType type)
type
- type of operation that has been startedvoid operationProgressed(int count, int total, OperationType type)
count
- progress counttotal
- total count to be attained or -1 if unknowntype
- type of operation that is progressingvoid operationTerminated(OperationType type)
type
- type of operation that has terminatedvoid operationAborted(OperationType type)
type
- type of operation that has been aborted