All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.squareup.workflow1.internal.SideEffectNode.kt Maven / Gradle / Ivy

There is a newer version: 1.12.1-beta13
Show newest version
package com.squareup.workflow1.internal

import com.squareup.workflow1.internal.InlineLinkedList.InlineListNode
import kotlinx.coroutines.Job

/**
 * Holds a [Job] that represents a running [side effect][RealRenderContext.runningSideEffect], as
 * well as the key used to identify that side effect.
 */
internal class SideEffectNode(
  val key: String,
  val job: Job
) : InlineListNode {

  override var nextListNode: SideEffectNode? = null
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy