Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type CloseableClient ¶
type CloseableClient interface {
Close()
}
type JobQueueClient ¶
type JobQueueClient interface {
CloseableClient
LoadRecentJobs(int) ([]*core.JobRecord, error)
}
type JobRecordClient ¶
type JobRecordClient interface {
CloseableClient
LoadJob(jobId string) (*core.JobRecord, uint64, error)
DownloadLogArtifact(*core.JobRecord, string) error
DownloadResultsArtifact(*core.JobRecord, string) error
DownloadScriptArtifact(*core.JobRecord, string) error
LoadResultsArtifact(*core.JobRecord) ([]byte, error)
LoadLogArtifact(*core.JobRecord) ([]byte, error)
}
type ManagerClient ¶
Click to show internal directories.
Click to hide internal directories.