IConverterListener
public interface IConverterListener
Defines the methods that are used to perform converter listening. Learn moreMore about monitoring conversion progress: Listening to conversion process events
Methods
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. |
started()
public abstract void started()
This method will be called as soon as actual conversion started.
progress(byte current)
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 |
completed()
public abstract void completed()
This method will be called as soon as conversion completed.