Interface StageState

All Known Implementing Classes:
StageState.Disabled, StageState.Faulted, StageState.Good

public sealed interface StageState permits StageState.Faulted, StageState.Good, StageState.Disabled
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static final class 
    Stage has been disabled.
    static final record 
    Exception was encountered during creation or startup of Stage.
    static final class 
    Stage has successfully been created and is awaiting events.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final StageState
    Stage is in a disabled state and events will be passed through without processing
    static final StageState
    Stage is in a good state and processing events
  • Method Summary

    Static Methods
    Modifier and Type
    Method
    Description
    faulted(Throwable throwable)
     
    static String
     
  • Field Details

    • GOOD

      static final StageState GOOD
      Stage is in a good state and processing events
    • DISABLED

      static final StageState DISABLED
      Stage is in a disabled state and events will be passed through without processing
  • Method Details