DryRunEffect
data class DryRunEffect(var mutatedReferences: List<DryRunMutation>, var returnValues: List<DryRunReturn>) : Disposable
Effects of a single command in the dry run, including mutated references and return values.
Constructors
| DryRunEffect | constructor(mutatedReferences: List<DryRunMutation>, returnValues: List<DryRunReturn>) |
Properties
| Name | Summary |
|---|---|
| mutatedReferences | var mutatedReferences: List<DryRunMutation> Changes made to arguments that were mutably borrowed by this command. |
| returnValues | var returnValues: List<DryRunReturn> Return results of this command. |
Functions
| Name | Summary |
|---|---|
| destroy | open override fun destroy() |