API reference
API reference
Select your platform
No SDKs available
No versions available

SystemDependencies Class

Modifiers: final
Represents a collection of system dependencies.

Signature

data class SystemDependencies(val mustRunBefore: MutableSet<SystemDependencyConfig>? = null, val mustRunAfter: MutableSet<SystemDependencyConfig>? = null)

Constructors

SystemDependencies ( mustRunBefore , mustRunAfter )
Signature
constructor(mustRunBefore: MutableSet<SystemDependencyConfig>? = null, mustRunAfter: MutableSet<SystemDependencyConfig>? = null)
Parameters
mustRunBefore: MutableSet?
  A set of systems that must run before this system.
mustRunAfter: MutableSet?
  A set of systems that must run after this system.

Properties

mustRunAfter : MutableSet?
[Get]
A set of systems that must run after this system.
Signature
val mustRunAfter: MutableSet<SystemDependencyConfig>? = null
mustRunBefore : MutableSet?
[Get]
A set of systems that must run before this system.
Signature
val mustRunBefore: MutableSet<SystemDependencyConfig>? = null
Did you find this page helpful?