|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | PROPERTY | CONSTR | METHOD | DETAIL: FIELD | PROPERTY | CONSTR | METHOD |
java.lang.Objectorg.linkedin.glu.orchestration.engine.commands.DbCommandExecution
@Entity class DbCommandExecution
Nested Class Summary | |
---|---|
enum |
DbCommandExecution.CommandType
|
Field Summary | |
---|---|
static java.lang.String |
MODULE
|
static Logger |
log
|
Property Summary | |
---|---|
java.lang.String |
agent
The agent on which the command was run |
java.lang.String |
command
The command run |
java.lang.String |
commandId
Id of the command (as returned by the agent) |
CommandType |
commandType
The type of the command |
java.lang.Long |
completionTime
time the command ended |
static java.lang.Object |
constraints
|
java.lang.String |
exitError
The exit error (if any) |
java.lang.String |
exitValue
The return value of the command |
java.lang.String |
fabric
The fabric on which the command was run |
boolean |
isExecuting
|
static java.lang.Object |
mapping
|
boolean |
redirectStderr
Whether stderr is redirected to stdout (through the flag... not the command) |
long |
startTime
time the command was started |
byte[] |
stderrFirstBytes
The result (stderr) (first bytes...) |
java.lang.Long |
stderrTotalBytesCount
The total number of bytes in stderr |
byte[] |
stdinFirstBytes
input provided to the command (first bytes...) |
java.lang.Long |
stdinTotalBytesCount
The total number of bytes in stdin |
byte[] |
stdoutFirstBytes
the result (stdout) (first bytes...) |
java.lang.Long |
stdoutTotalBytesCount
The total number of bytes in stdout |
static java.lang.Object |
transients
|
java.lang.String |
username
The user who is running the command |
Method Summary | |
---|---|
DbCommandExecution
|
copy()
|
Timespan
|
getDuration()
@return the duration |
byte[]
|
getFirstBytes(java.lang.Object streamType)
|
java.lang.Long
|
getTotalBytesCount(java.lang.Object streamType)
|
boolean
|
hasMoreBytes(java.lang.Object streamType)
|
boolean
|
isAborted()
Means it never completed for some reason (currently not running and exit value was never set!) |
Methods inherited from class java.lang.Object | |
---|---|
java.lang.Object#wait(), java.lang.Object#wait(long), java.lang.Object#wait(long, int), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
Field Detail |
---|
public static final java.lang.String MODULE
public static final Logger log
Property Detail |
---|
java.lang.String agent
java.lang.String command
java.lang.String commandId
CommandType commandType
java.lang.Long completionTime
static java.lang.Object constraints
java.lang.String exitError
java.lang.String exitValue
java.lang.String fabric
boolean isExecuting
static java.lang.Object mapping
boolean redirectStderr
long startTime
byte[] stderrFirstBytes
java.lang.Long stderrTotalBytesCount
byte[] stdinFirstBytes
java.lang.Long stdinTotalBytesCount
byte[] stdoutFirstBytes
java.lang.Long stdoutTotalBytesCount
static java.lang.Object transients
java.lang.String username
Method Detail |
---|
DbCommandExecution copy()
Timespan getDuration()
byte[] getFirstBytes(java.lang.Object streamType)
java.lang.Long getTotalBytesCount(java.lang.Object streamType)
boolean hasMoreBytes(java.lang.Object streamType)
boolean isAborted()
Groovy Documentation