github.com/turbot/steampipe@v1.7.0-rc.0.0.20240517123944-7cef272d4458/pkg/dashboard/dashboardtypes/dashboard_parent.go (about)

     1  package dashboardtypes
     2  
     3  import "context"
     4  
     5  // DashboardParent is an interface implemented by all dashboard run nodes which have children
     6  type DashboardParent interface {
     7  	DashboardTreeRun
     8  	GetName() string
     9  	ChildCompleteChan() chan DashboardTreeRun
    10  	GetChildren() []DashboardTreeRun
    11  	ChildrenComplete() bool
    12  	ChildStatusChanged(context.Context)
    13  }