enum

Fluxion::InterruptStep::ResumeMode

Inherits Enum < Comparable < Value < Object

Constants

Next = 0

Record this entry as complete and resume at the next one.

Current = 1

Resume at this entry, so it runs again.

Class methods

from_config?(value : String | Nil) : self | Nil
Source

Instance methods

config_name
Source
current?

Returns true if this enum value equals Current

Source
next?

Returns true if this enum value equals Next

Source
to_s(io : IO) : Nil

Appends a String representation of this enum member to the given io.

See also: to_s.

Source