override fun getNextCommand()

in agent/src/main/kotlin/com/jetbrains/teamcity/plugins/unrealengine/agent/UnrealEngineBuildSession.kt [39:49]


    override fun getNextCommand(): CommandExecution? {
        processPreviousCommandCompletion()

        val nextCommand = workflow.next()

        if (nextCommand != null) {
            executingCommands.addLast(nextCommand)
        }

        return nextCommand
    }