Interface ITaskReporter
Interface for reporting the status of a process.
Namespace: UnityEditor.Localization.Reporting
Assembly: Unity.Localization.Editor.dll
Syntax
public interface ITaskReporter
Properties
| Name | Description |
|---|---|
| CurrentProgress | The current progress in the range 0-1. |
| Started | Has the process started? |
Methods
| Name | Description |
|---|---|
| Completed(string) | Report the process is completed successfully. |
| Fail(string) | Report the process failed. |
| ReportProgress(string, float) | Report the current progress. |
| Start(string, string) | Start the process. |