Current section

Files

Jump to
mist src mist internal next.gleam
Raw

src/mist/internal/next.gleam

import gleam/erlang/process.{type Selector}
import gleam/option.{type Option}
pub type Next(state, message) {
Continue(state: state, selector: Option(Selector(message)))
NormalStop
AbnormalStop(reason: String)
}