Interface BacklogTracerEventMessage
-
- All Superinterfaces:
Serializable
public interface BacklogTracerEventMessage extends Serializable
Represents a traced message by theorg.apache.camel.processor.interceptor.BacklogTracer
.
-
-
Field Summary
Fields Modifier and Type Field Description static String
ROOT_TAG
static String
TIMESTAMP_FORMAT
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getExchangeId()
String
getMessageAsXml()
String
getRouteId()
long
getTimestamp()
String
getToNode()
long
getUid()
String
toXml(int indent)
Dumps the event message as XML using theROOT_TAG
as root tag.
-
-
-
Field Detail
-
ROOT_TAG
static final String ROOT_TAG
- See Also:
- Constant Field Values
-
TIMESTAMP_FORMAT
static final String TIMESTAMP_FORMAT
- See Also:
- Constant Field Values
-
-
Method Detail
-
getUid
long getUid()
-
getTimestamp
long getTimestamp()
-
getRouteId
String getRouteId()
-
getExchangeId
String getExchangeId()
-
getMessageAsXml
String getMessageAsXml()
-
toXml
String toXml(int indent)
Dumps the event message as XML using theROOT_TAG
as root tag. The timestamp tag is formatted in the format defined byTIMESTAMP_FORMAT
- Parameters:
indent
- number of spaces to indent- Returns:
- xml representation of this event
-
-