Documentation
¶
Index ¶
- Constants
- type ClientAbortJobMessage
- type ClientJobUpdateMessage
- type ClientLocalTestManagerMessage
- type ClientNewJobMessage
- type ServerAgentVersionMessage
- type ServerDisplayableErrorMessage
- type ServerDisplayableSuccessMessage
- type ServerGlobeTestMessage
- type ServerJobDeletedMessage
- type ServerLocalTestManagerMessage
- type ServerNewJobMessage
- type ServerRunningJobsMessage
Constants ¶
View Source
const AgentPort = 59125
View Source
const AgentVersion = "0.1.0"
View Source
const AgentWorkerName = "localhost"
View Source
const OrchestratorRedisHost = "localhost"
View Source
const OrchestratorRedisPort = "59126"
View Source
const WorkerRedisHost = "localhost"
View Source
const WorkerRedisPort = "59127"
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ClientAbortJobMessage ¶
type ClientJobUpdateMessage ¶
type ClientJobUpdateMessage struct {
Type string `json:"type"` // "jobUpdate"
Message lib.WrappedJobUserUpdate `json:"message"`
}
type ClientLocalTestManagerMessage ¶
type ClientLocalTestManagerMessage struct {
Type string `json:"type"`
}
type ClientNewJobMessage ¶
type ServerAgentVersionMessage ¶
type ServerAgentVersionMessage struct {
Type string `json:"type"` // "agentVersion"
Message string `json:"message"`
}
Server relays some messages back when successful
type ServerDisplayableErrorMessage ¶
type ServerDisplayableErrorMessage struct {
Type string `json:"type"` // "displayableErrorMessage"
Message string `json:"message"`
}
Server relays some messages back when successful
type ServerDisplayableSuccessMessage ¶
type ServerDisplayableSuccessMessage struct {
Type string `json:"type"` // "displayableSuccessMessage"
Message string `json:"message"`
}
Server relays some messages back when successful
type ServerGlobeTestMessage ¶
type ServerGlobeTestMessage struct {
Type string `json:"type"` // "globeTestMessage"
Message string `json:"message"`
}
Server relays some messages back when successful
type ServerJobDeletedMessage ¶
type ServerJobDeletedMessage struct {
Type string `json:"type"` // "jobDeleted"
Message string `json:"message"`
}
Server relays some messages back when successful
type ServerLocalTestManagerMessage ¶
type ServerLocalTestManagerMessage struct {
Type string `json:"type"`
}
Server relays some messages back when successful
type ServerNewJobMessage ¶
type ServerNewJobMessage struct {
Type string `json:"type"` // "newJob"
Message libOrch.Job `json:"message"`
}
Server relays some messages back when successful
type ServerRunningJobsMessage ¶
type ServerRunningJobsMessage struct {
Type string `json:"type"` // "runningJobs"
Message []libOrch.Job `json:"message"`
}
Server relays some messages back when successful
Click to show internal directories.
Click to hide internal directories.