TransformerStatus

sealed interface TransformerStatus

Defines the possible states of a TransformationRequest execution.

Inheritors

Types

Link copied to clipboard

Transformer encountered a failure.

Link copied to clipboard
sealed interface Finished : TransformerStatus

Denotes the completion of a Transformer execution.

Link copied to clipboard
class Progress(@IntRange(from = 0, to = 100) val progress: Int) : TransformerStatus

Current progress of a Transformer execution.

Link copied to clipboard
class Success(val output: File, val exportResult: ExportResult) : TransformerStatus, TransformerStatus.Finished

A successful Transformer execution.