IConverterListener
Leave feedback
On this page
public interface IConverterListener
Defines the methods that are used to perform converter listening. Learn more More about monitoring conversion progress: Listening to conversion process events
| Method | Description |
|---|---|
| started() | This method will be called as soon as actual conversion started. |
| progress(byte current) | This method will be called each time when conversion progress changed. |
| completed() | This method will be called as soon as conversion completed. |
public abstract void started()
This method will be called as soon as actual conversion started.
public abstract void progress(byte current)
This method will be called each time when conversion progress changed.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| current | byte | Current conversion progress in percentage |
public abstract void completed()
This method will be called as soon as conversion completed.
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.