|
Kieker 1.5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectkieker.common.record.AbstractMonitoringRecord
kieker.common.record.controlflow.OperationExecutionRecord
public final class OperationExecutionRecord
String variables must not be null.
Nested Class Summary |
---|
Nested classes/interfaces inherited from interface kieker.common.record.IMonitoringRecord |
---|
IMonitoringRecord.Factory |
Field Summary | |
---|---|
static int |
NO_EOI_ESS
Constant to be used if no eoi or ess required. |
static String |
NO_HOSTNAME
Constant to be used if no hostname required. |
static String |
NO_SESSION_ID
Constant to be used if no session ID required. |
static long |
NO_TIMESTAMP
Constant to be used if no timestamp required. |
static long |
NO_TRACEID
Constant to be used if no trace ID required. |
Constructor Summary | |
---|---|
OperationExecutionRecord()
Deprecated. will be removed in Kieker 1.6 |
|
OperationExecutionRecord(Object[] values)
|
|
OperationExecutionRecord(String componentName,
String methodName,
long traceId)
Deprecated. will be removed in Kieker 1.6 |
|
OperationExecutionRecord(String componentName,
String opName,
long tin,
long tout)
Deprecated. will be removed in Kieker 1.6 |
|
OperationExecutionRecord(String componentName,
String opName,
long traceId,
long tin,
long tout)
Deprecated. will be removed in Kieker 1.6 |
|
OperationExecutionRecord(String operationSignature,
String sessionId,
long traceId,
long tin,
long tout,
String hostname,
int eoi,
int ess)
Creates a new OperationExecutionRecord with the given parameters. |
|
OperationExecutionRecord(String componentName,
String opName,
String sessionId,
long traceId,
long tin,
long tout)
Deprecated. will be removed in Kieker 1.6 |
|
OperationExecutionRecord(String componentName,
String opName,
String sessionId,
long traceId,
long tin,
long tout,
String vnName,
int eoi,
int ess)
Deprecated. will be removed in Kieker 1.6 |
Method Summary | |
---|---|
String |
getClassName()
Deprecated. will be removed in Kieker 1.6 |
int |
getEoi()
|
int |
getEss()
|
int |
getExperimentId()
Deprecated. Will be removed in 1.6 |
String |
getHostname()
|
String |
getOperationName()
Deprecated. will be removed in Kieker 1.6 |
String |
getOperationSignature()
|
Object |
getRetVal()
Deprecated. remove in Kieker 1.6 |
String |
getSessionId()
|
long |
getTin()
|
long |
getTout()
|
long |
getTraceId()
|
Class<?>[] |
getValueTypes()
|
void |
initFromArray(Object[] values)
Deprecated. |
boolean |
isEntryPoint()
Deprecated. remove in Kieker 1.6 |
void |
setClassName(String className)
Deprecated. will be removed in Kieker 1.6. Also, this class will become immutable in Kieker 1.6. |
void |
setEntryPoint(boolean entryPoint)
Deprecated. remove in Kieker 1.6 |
void |
setEoi(int eoi)
Deprecated. this class will become immutable in Kieker 1.6 |
void |
setEss(int ess)
Deprecated. this class will become immutable in Kieker 1.6 |
void |
setExperimentId(int experimentId)
Deprecated. this class will become immutable in Kieker 1.6 |
void |
setHostname(String hostname)
Deprecated. this class will become immutable in Kieker 1.6 |
void |
setOperationName(String operationName)
Deprecated. will be removed in Kieker 1.6. Also, this class will become immutable in Kieker 1.6. |
void |
setOperationSignature(String operationSignature)
Deprecated. this class will become immutable in Kieker 1.6 A string can, for example, be created using ClassOperationSignaturePair.toOperationSignatureString() . |
void |
setRetVal(Object retVal)
Deprecated. remove in Kieker 1.6 |
void |
setSessionId(String sessionId)
Deprecated. this class will become immutable in Kieker 1.6 |
void |
setTin(long tin)
Deprecated. this class will become immutable in Kieker 1.6 |
void |
setTout(long tout)
Deprecated. this class will become immutable in Kieker 1.6 |
void |
setTraceId(long traceId)
Deprecated. this class will become immutable in Kieker 1.6 |
Object[] |
toArray()
|
Methods inherited from class kieker.common.record.AbstractMonitoringRecord |
---|
checkArray, classForName, compareTo, createFromArray, createFromStringArray, equals, fromStringArrayToTypedArray, getLoggingTimestamp, hashCode, setLoggingTimestamp, toString, typesForClass |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final String NO_HOSTNAME
public static final String NO_SESSION_ID
public static final long NO_TRACEID
public static final long NO_TIMESTAMP
public static final int NO_EOI_ESS
Constructor Detail |
---|
@Deprecated public OperationExecutionRecord()
public OperationExecutionRecord(String operationSignature, String sessionId, long traceId, long tin, long tout, String hostname, int eoi, int ess)
OperationExecutionRecord
with the given parameters. The fields getRetVal()
is set
to null; isEntryPoint()
is set to false.
operationSignature
- an operation string, as defined in ClassOperationSignaturePair.splitOperationSignatureStr(String)
; must not be null.sessionId
- the session ID; must not be null, use NO_SESSION_ID
if no session ID desired.traceId
- the trace ID; use NO_TRACEID
if no trace ID desired.tin
- the execution start timestamp; use NO_TIMESTAMP
if no timestamp desired.tout
- the execution stop timestamp; use NO_TIMESTAMP
if no timestamp desired.hostname
- the host name; must not be null, use NO_HOSTNAME
if no host name desired.eoi
- the execution order index (eoi); use NO_EOI_ESS
if no eoi desired.ess
- the execution order index (ess); use NO_EOI_ESS
if no ess desired.@Deprecated public OperationExecutionRecord(String componentName, String methodName, long traceId)
componentName
- methodName
- traceId
- @Deprecated public OperationExecutionRecord(String componentName, String opName, long traceId, long tin, long tout)
componentName
- opName
- traceId
- tin
- tout
- @Deprecated public OperationExecutionRecord(String componentName, String opName, long tin, long tout)
componentName
- opName
- tin
- tout
- @Deprecated public OperationExecutionRecord(String componentName, String opName, String sessionId, long traceId, long tin, long tout)
componentName
- opName
- sessionId
- traceId
- tin
- tout
- @Deprecated public OperationExecutionRecord(String componentName, String opName, String sessionId, long traceId, long tin, long tout, String vnName, int eoi, int ess)
componentName
- opName
- sessionId
- traceId
- tin
- tout
- vnName
- eoi
- ess
- public OperationExecutionRecord(Object[] values)
Method Detail |
---|
public final Object[] toArray()
toArray
in interface IMonitoringRecord
@Deprecated public void initFromArray(Object[] values)
initFromArray
in interface IMonitoringRecord
public Class<?>[] getValueTypes()
getValueTypes
in interface IMonitoringRecord
@Deprecated public final int getExperimentId()
@Deprecated public final void setExperimentId(int experimentId)
experimentId
- the experimentId to setpublic final String getHostname()
@Deprecated public final void setHostname(String hostname)
hostname
- the hostname to setpublic String getOperationSignature()
@Deprecated public void setOperationSignature(String operationSignature)
ClassOperationSignaturePair.toOperationSignatureString()
.
operationSignature
- @Deprecated public final String getClassName()
@Deprecated public final void setClassName(String className)
setOperationSignature(String)
instead.
className
- the className to set@Deprecated public final String getOperationName()
@Deprecated public final void setOperationName(String operationName)
setOperationSignature(String)
instead.
operationName
- the operationName to setpublic final String getSessionId()
@Deprecated public final void setSessionId(String sessionId)
sessionId
- the sessionId to setpublic final long getTraceId()
@Deprecated public final void setTraceId(long traceId)
traceId
- the traceId to setpublic final long getTin()
@Deprecated public final void setTin(long tin)
tin
- the tin to setpublic final long getTout()
@Deprecated public final void setTout(long tout)
tout
- the tout to setpublic final int getEoi()
@Deprecated public final void setEoi(int eoi)
eoi
- the eoi to setpublic final int getEss()
@Deprecated public final void setEss(int ess)
ess
- the ess to set@Deprecated public Object getRetVal()
@Deprecated public void setRetVal(Object retVal)
retVal
- @Deprecated public boolean isEntryPoint()
@Deprecated public void setEntryPoint(boolean entryPoint)
entryPoint
-
|
Kieker 1.5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |