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 StringROOT_TAGstatic StringTIMESTAMP_FORMAT
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetExchangeId()StringgetMessageAsXml()StringgetRouteId()longgetTimestamp()StringgetToNode()longgetUid()StringtoXml(int indent)Dumps the event message as XML using theROOT_TAGas 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_TAGas 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
-
-