data class SystemDependencies(val mustRunBefore: MutableSet<SystemDependencyConfig>? = null, val mustRunAfter: MutableSet<SystemDependencyConfig>? = null)
SystemDependencies
(
mustRunBefore
, mustRunAfter
)
|
Signature
constructor(mustRunBefore: MutableSet<SystemDependencyConfig>? = null, mustRunAfter: MutableSet<SystemDependencyConfig>? = null) Parameters
mustRunBefore:
MutableSet?
mustRunAfter:
MutableSet?
Returns |
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 |