com.kuka.common
Interface IProgressListener


public interface IProgressListener

The progress listener listens for a progress.

This element is an undocumented internal feature. It is not intended to be used by applications as it might change or be removed in future versions.

Method Summary
 void failedOn(String message, Throwable cause, Object... parameter)
          Called when the process has failed to work on an item.
 void succeededOn(String message, Object... parameter)
          Called when the install process has successfully finisehd to work on an item.
 void workingOn(String message, Object... parameter)
          Called when the process starts to work on a new item.
 

Method Detail

workingOn

void workingOn(String message,
               Object... parameter)
Called when the process starts to work on a new item.

Parameters:
message - A message describing the process step.
parameter - A number of parameters that should be used by the progress listener

succeededOn

void succeededOn(String message,
                 Object... parameter)
Called when the install process has successfully finisehd to work on an item.

Parameters:
message - A message describing the process step.
parameter - A number of parameters that should be used by the progress listener

failedOn

void failedOn(String message,
              Throwable cause,
              Object... parameter)
Called when the process has failed to work on an item.

Parameters:
message - A message describing the failure.
cause - The (optional) error cause.
parameter - A number of parameters that can be committed


Copyright © 2019. All rights reserved.