resume method
void
resume()
Resumes the engine from a paused state.
Implementation
void resume() {
if (_status == ProcessingStatus.paused) {
_updateStatus(ProcessingStatus.processing);
}
}
Resumes the engine from a paused state.
void resume() {
if (_status == ProcessingStatus.paused) {
_updateStatus(ProcessingStatus.processing);
}
}