Cancelable Class

abstract class Cancelable(handler: ReadHandler)

A stage the user can cancel while it runs.

Parameters

  • handler — the reader driving the stage, which onCancel asks to stop.

Inheritors

Constructors

Cancelable

constructor(handler: ReadHandler)

Functions

onCancel

fun onCancel()

Cancels the running stage.

Top